Holy Python crash course
18 lessons with exercises ๐๐งต
18 lessons with exercises ๐๐งต
01 print()
Learn print-tricks
- print(name, age, height, sep='--')
- print(name, end='')
Mistakes
- print('value ' + 2)
Exercises holypython.com
๐๐งต
Learn print-tricks
- print(name, age, height, sep='--')
- print(name, end='')
Mistakes
- print('value ' + 2)
Exercises holypython.com
๐๐งต
02 variables
Variables contain data.
So, you can call them later.
This makes data
- reusable
- recallable
- reassignable
Exercises holypython.com
Variables contain data.
So, you can call them later.
This makes data
- reusable
- recallable
- reassignable
Exercises holypython.com
03 Data Types
Some of the basic and most common data types in Python are:
- int : consists of integers.
- float : numbers with decimals
- str : standing for string
Exercises holypython.com
๐๐งต
Some of the basic and most common data types in Python are:
- int : consists of integers.
- float : numbers with decimals
- str : standing for string
Exercises holypython.com
๐๐งต
04 Type conversion
These functions can help you convert the type of data.
- int()
- float()
- str()
Exercises holypython.com
๐๐งต
These functions can help you convert the type of data.
- int()
- float()
- str()
Exercises holypython.com
๐๐งต
05 Data structures
Important Python built-in data structures
- list []
- dict {}
- tuple ()
Exercises holypython.com
๐๐งต
Important Python built-in data structures
- list []
- dict {}
- tuple ()
Exercises holypython.com
๐๐งต
06 Lists
7 most important list methods
- see video
3 most used functions with lists
- see video
Exercises holypython.com
๐๐งต
7 most important list methods
- see video
3 most used functions with lists
- see video
Exercises holypython.com
๐๐งต
Loading suggestions...