Шаг 1 из 3+100 XP
Методы строк
upper, lower, split, join, replace, strip.
Методы
"Hi".upper() # HI
" hi ".strip() # hi
"a,b,c".split(",") # ['a','b','c']
"-".join(["a","b"])# a-b
"hello".replace("l","L") # heLLoupper, lower, split, join, replace, strip.
"Hi".upper() # HI
" hi ".strip() # hi
"a,b,c".split(",") # ['a','b','c']
"-".join(["a","b"])# a-b
"hello".replace("l","L") # heLLo