2022PythonExamples/2 - Console In and Out/main.py

6 lines
125 B
Python

print("Hello World!")
print("This is console out!")
userInput = input("Write some text: ")
print("You wrote: " + userInput)