- 00:00 Intro
- 04:48 What is Python
- 14:50 What Can Python Do
- 19:41 Python Modules
- 24:16 Python Frameworks
- 27:09 Python Syntax
- 33:21 How to Code Python
- 36:55 Python Versions
- 43:35 Who is Python For
- 48:32 Final Thoughts
example.py
import random
x = 0
while x <= 10:
random_num = random.randint(0,100)
if random_num > 50:
print(f'{random_num} is BIG')
else:
print(random_num)
x += 1
Be the first to comment