Computer Science

What is the result of the following expression?

print ('One', ' Two ' * 2)
print ('One ' + 'Two' * 2)
print (len('10123456789'))

Python

Python String Manipulation

16 Likes

Answer

One  Two  Two 
One TwoTwo
11

Answered By

6 Likes


Related Questions