#Simple console program
print('Hello')
x = input('Enter a value: ')
print(value)
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");
Python Docs: https://docs.python.org/3/tutorial/
W3 School: https://www.w3schools.com/python/
Tutorial Point: https://www.tutorialspoint.com/python/index.htm
Python is really a great language, isn't it?
# printing hello world in python
print("Hello World")
# adding 2 numbers
num1 = 10
num2 = 20
print(num1 + num2)