# -*- coding: utf-8 -*- str = [u"afaaas\n", "adasf \t"] print "withouth strip():", str print "with strip:\n", str[0].strip() print str[1].strip()
Комментариев нет:
Отправить комментарий