Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
Learn Python VARIABLES in 10 minutes! โŽ
Play lesson

Python tutorial for beginners ๐Ÿ - Learn Python VARIABLES in 10 minutes! โŽ

4.0 (0)
8 learners

What you'll learn

This course includes

  • 14.3 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

#python #pythontutorial #pythoncourse # Variable = 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 = "[email protected]" # Integers age = 25 quantity = 3 num_of_students = 30 # Float price = 10.99 gpa = 3.2 distance = 5.5 # Boolean is_student = True for_sale = False is_online = True print(f"Hello {first_name}") print(f"You are {age} years old") print(f"Your gpa is: {gpa}") if is_student: print("You are a student") else: print("You are NOT student")

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere