Answer :
Answer:
user_name = input("input user name: ")
print(len(user_name))
Explanation:
input - input function in python
len - length of value
print - print data
Answer:
user_name = input("input user name: ")
print(len(user_name))
Explanation:
input - input function in python
len - length of value
print - print data