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' c = 'world hello'
d = '''world d = '''world
hello''' hello'''
print(a) print(len(a))
print(b) print(len(b))
print(c) print(len(c))
print(d) print(len(d))