6 lines
125 B
Python
6 lines
125 B
Python
print("Hello World!")
|
|
|
|
print("This is console out!")
|
|
|
|
userInput = input("Write some text: ")
|
|
print("You wrote: " + userInput) |