# Lesson 4: Input

This lesson learns are based on Python book page 32-35

# Tools

https://trinket.io/ (opens new window)

# Lesson Learns

# Input

name = input()
print("Nice to meet you, " + name)
1
2
name = input("What is your name?:")
print("Nice to meet you, " + name)
1
2

# Do you want to do it again?

while(True):
    print("Hello I am Python!")
    answer = input("Do you want me to stop? If yes please enter y:")
    if(answer == "y"):
        break
1
2
3
4
5

# Exercises

PythonExercise.pdf Page 19 (No.1 and 2a)