python intro html code example
Example 1: python tutorial youtube
'''
Do what you want, Google if you don't know how to.
But if you really want a tutorial; https://www.youtube.com/watch?v=rfscVS0vtbw
'''
Example 2: python tutororila
print ("Welcome to 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");