Hi all On linux, python 3.2 -
x = input()
xyz
len(x)
3
x
'xyz' on windows, python 3.2 -
x = input()
xyz
len(x)
4
x
'xyz\r' Is this expected behaviour? Frank Millman -- http://mail.python.org/mailman/listinfo/python-list
Hi all On linux, python 3.2 -
x = input()
xyz
len(x)
3
x
'xyz' on windows, python 3.2 -
x = input()
xyz
len(x)
4
x
'xyz\r' Is this expected behaviour? Frank Millman -- http://mail.python.org/mailman/listinfo/python-list