Computer Science, asked by charkha6066, 1 year ago

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 aditya1984
0
just count all characters including spaces.. that's your answer. do not count "\t".

output:
18
14
Similar questions