Test string len.

This commit is contained in:
Captain ALM 2022-11-30 17:01:41 +00:00
parent 89f8a5c52b
commit 8ae13a5e96
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1
1 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ world"""
c = 'world hello'
d = '''world
hello'''
print(a)
print(b)
print(c)
print(d)
print(len(a))
print(len(b))
print(len(c))
print(len(d))