Exercise: Get length of string
Use the len function to count the number of characters.
text = 'Impressive'
n =
print(n)
Python
Setting up Python environment...
Output
text = 'Impressive'
n =
print(n)
Setting up Python environment...