mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
10 lines
193 B
Python
10 lines
193 B
Python
def foo(x):
|
|
return x
|
|
|
|
artist = foo(1)
|
|
print('%s' % (artist.lower()[0:10]))
|
|
|
|
unicode_content = foo(u"test")
|
|
assert isinstance(unicode_content, unicode)
|
|
print '%s...' % unicode_content[:200]
|