Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 228 Bytes

input_output.md

File metadata and controls

10 lines (9 loc) · 228 Bytes

Simple input and output in python interactive

>>> message = "hello world"
>>> print(message)
hello world
>>> message = raw_input()
(I types...) HELLO WORLD
>>> print(message)
HELLO WORLD
>>>