Length¶
Example:
output = "Hello world"
print(len(output)) # prints out 11
output = ""
print(len(output)) # empty string has the length of 0
Example:
output = "Hello world"
print(len(output)) # prints out 11
output = ""
print(len(output)) # empty string has the length of 0