LearningPy/main.py

12 lines
161 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'''
2022-11-30 17:01:41 +00:00
print(len(a))
print(len(b))
print(len(c))
print(len(d))