“Python обратные слова в строке” Ответ

Как обратить вспять порядок слов в Python

## initializing the string
string = "I am a python programmer"
## splitting the string on space
words = string.split()
## reversing the words using reversed() function
words = list(reversed(words))
## joining the words and printing
print(" ".join(words))
Distinct Dragonfly

Как изменить строку в Python

# in order to make a string reversed in python 
# you have to use the slicing as following

string = "racecar"
print(string[::-1])
Tejas Naik

Python обратить вспять строку

#linear

def reverse(s): 
  str = "" 
  for i in s: 
    str = i + str
  return str

#splicing
'hello world'[::-1]
Smiling Salmon

Обратить в обратную строку питона

string = 'abcd'
''.join(reversed(string))
Lonely Louse

обратная строка Python

reversed_string = input_string[::-1]
Xanthous Xenomorph

Python обратные слова в строке

def reverse(st):
    s = st.split()
    return ' '.join(s[::-1])
Ian

Ответы похожие на “Python обратные слова в строке”

Вопросы похожие на “Python обратные слова в строке”

Больше похожих ответов на “Python обратные слова в строке” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования