Computer Science, asked by praneethchekuri2005, 6 months ago

Determine the output of the statement: print("Python"*3)

Answers

Answered by Anonymous
0

Input:

print("Python"*3)

Output:

PythonPythonPython

Replication(*) only runs for string to integer.

Similar questions