My system is debian7.8+python3.4.1 .
It is found that to copy lines from gedit into python console result in more redundant characters ,why?
I copy it into python console.
prod=1
for i in range(1,11):
prod=prod*i
print(prod)
The lines turn into the following:
prod=1
for i in range(1,11):
prod=prod*i
print(prod)>>> ... ... >>> >>>
I have never input the characters >>> ... ... >>> >>>
in my gedit.