Determine the output of the statement: print("Python"*3)
Answers
Answered by
0
Input:
print("Python"*3)
Output:
PythonPythonPython
Replication(*) only runs for string to integer.
Similar questions