Найти - Пользователи
Полная версия: разбить слово на пробелы
Начало » Python для новичков » разбить слово на пробелы
1
Genabox
привет есть слово
world
как его зазбить что бы было
w o r l d
?
anotcher
Genabox
привет есть словоworldкак его зазбить что бы былоw o r l d?
s = "world"
we = ""
for i in s:
we += i + " "
print(we)
Genabox
thank you very much!
py.user.next
  
>>> ' '.join('world')
'w o r l d'
>>>
Genabox
перепишем так/
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB