Learning/basics.py

21 lines
212 B
Python
Raw Normal View History

2020-05-18 01:32:28 +00:00
if True:
print 'hello'
print 'asd'
# single-line comment
"""
line 1
line 2
line 3
"""
name = 'snachodog'
num1 = 5; num2 = 8
long_name =\
"something" + \
"something else"
print 'hello world',