python interactive tutorial code example

Example 1: how to learn python

"""
Great foundation for basics 
https://www.w3schools.com/python/default.asp"
"""

Example 2: python tutorial

print ("Hello, Python!");

Example 3: python tutorial

print("Hello World");

variable = input("What is your favorite corn flavour");

print(variable)

for i in range(4):
  print("This will happen 4 times");
  
while(True):
  print("This will run forever and will crash terminal");

Example 4: python tutorial

Python is really a great language, isn't it?