#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)
# Lesson 1
# The HASHTAG (#) symbol is used to make comments about your code.
# Most programmers will use them when identifying what a new section of code does.
# The shortcut in most programs to comment out a line is ctrl + / .
# Print() makes a line-break in your output.
print()
# This will print out the words hello world in the console. Run it and see.
print('hello world')
# if this is the first time youre coding phyton type this
print("hello world")
#if this is your first time then code as simple as this
print("Hello World")