I have written a Python 3 code, which is:
i = int(input("enter number: "))
print("enter",i)
I'm expecting an output as:
enter number: 5
enter 5
However, I'm getting this:
enter number: 5
('enter', 5)
What could be the issue? How can I rectify this?