how to code for python code example
Example: how to code in python
#if its your first time start with this
print("hello world")
#now learn about input
input("whats your name")
#if statements and variables
run = True
if run == True:
print("hi")
#now lets combine our knowledge
print("Whats your name")
name = input("")
print("Hello, " + name)