LearningPy/main.py
2022-11-30 16:59:34 +00:00

12 lines
141 B
Python

#String tests
a = "hello world"
b = """hello
world"""
c = 'world hello'
d = '''world
hello'''
print(a)
print(b)
print(c)
print(d)