LearningPy/main.py

12 lines
141 B
Python
Raw Normal View History

2022-11-30 16:59:34 +00:00
#String tests
a = "hello world"
b = """hello
world"""
c = 'world hello'
d = '''world
hello'''
print(a)
print(b)
print(c)
print(d)