Computer Science

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

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

Python String Manipulation

24 Likes

Answer

The result of the statement is:

FuntrialOotyOotyOoty

Answered By

14 Likes


Related Questions