Hi i have a question in using Eric4 as follow: code as this:
*t = raw_input("enter a list: ").split(',')*
*print t*
*
*
and i thought the result would be:
*>>> enter a list: 1,2,3,4,5
['1', '2', '3', '4', '5']
*
*
*
but the result is:
*>>> enter a list: 1,2,3,4,5*
*[u'1', u'2', u'3', u'4', u'5']*
*
*
why?!
Appreciate for answer!
_______________________________________________ Eric mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/eric
