Learn Python With Rune
Learn Python With Rune

@PythonWithRune

8 Tweets 14 reads Mar 17, 2023
Holy Python crash course
18 lessons with exercises ๐Ÿ‘‡๐Ÿงต
01 print()
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
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
๐Ÿ‘‡๐Ÿงต
04 Type conversion
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
๐Ÿ‘‡๐Ÿงต
06 Lists
7 most important list methods
- see video
3 most used functions with lists
- see video
Exercises holypython.com
๐Ÿ‘‡๐Ÿงต
Get the rest of the 18 lessons
Go to Holy Python
holypython.com

Loading suggestions...