Find out the output of the following :
Str1= "What is your \t Name"
Str2="My Name is
amit"
len(Str1)
len(Str2)
Answers
Answered by
0
just count all characters including spaces.. that's your answer. do not count "\t".
output:
18
14
output:
18
14
Similar questions