БГ
Size: a a a
БГ
БГ
БГ
K
БГ
py3
class Callable():
def __call__(self):
return "член"
instance = Callable()
returned = instance()
print(returned)
член
БГ
БГ
__call__БГ
A
БГ
for element in list: здесь списокfor key in {...}: здесь словарьfor element in {...}: здесь setfor index, element in enumerate (%some%):for number in range(10):for her_poimi_chto in %generator%: здесь генераторБГ
БГ
БГ
БГ
str.replace('0', '') это не по-людски типа?R3
R3
БГ
R3
БГ
py3
a = "012030"
print(a.strip('0'))
1203