Learn Python

1. variables ❎ A container for a value (string, integer, float, boolean) A variable behaves as if it was the value it contains # Strings first_name = "Bro" food = "pizza" email = "Bro123@gmail.com" print(f"Hello {first_name}") print(f"You like {food}") print(f"Your email is: {email}") # Integers age = 25 quantity = 3 num_of_students =30 print(f"You are {age} years old") print(f"You are buying {quantity} items") print(f"You class has {num_of_students} students") # Float price = 10.99 gpa = 3.2 distance = 5.5 print(f"The price is ${price}") print(f"Your gpa is: {gpa}") print(f"You ran {distance}km") # Boolean is_student = False for_sale = False is_online = True if is_online: print("You are online") else: print("You are offline") Variable assignments ...

April 26, 2025 · 27 min

Python Roadmap

1. Learn the Basics Python is a high-level, interpreted, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation. Python is dynamically-typed and garbage-collected. official Python Website article Python - Wiki article Tutorial Series: How to Code in Python article Google’s Python Class article W3Schools - Python Tutorial video Learn Python - Full Course feed Explore top posts about Python ◇Basics Syntax Setup the environment for python and get started with the basics. ...

February 27, 2025 · 23 min