Advertisement
KodingKid

An Introduction to Python

Mar 19th, 2021
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. #An introduction to Python for beginners by Koding Kid
  2. #This is a comment
  3. print("Hello World")
  4. #This is a hello world print script
  5. string1 = "hello"
  6. print(string1)
  7. #This is a variable/string
  8. x = 100
  9. print(x)
  10. #This is an integer
  11. x = 1.5
  12. print(x)
  13. #This is a float
  14. a = 392
  15. b = 45
  16. if a > b:
  17.   print("a is greater than b")
  18. else:
  19.   print("a is smaller than b")
  20. #This is a boolean value
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement