Computer Science

What is the result of following statement, if the input is 'Fun'?

print(input("…") + "trial" + "Ooty" * 3)

Python String Manipulation

27 Likes

Answer

The result of the statement is:

FuntrialOotyOotyOoty

Answered By

15 Likes


Related Questions