“Odwróć słowa w Python String” Kod odpowiedzi

Jak odwrócić sznur w Pythonie

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

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

Odwrotny ciąg w Python

'hello world'[::-1]
'dlrow olleh'
Kind Kangaroo

Odwróć słowa w Python String

string = 'hello people of india'
words = string.split()   #converts string into list
print(words[::-1])
Uptight Unicorn

Python odwróć słowa w ciągu

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

Odpowiedzi podobne do “Odwróć słowa w Python String”

Pytania podobne do “Odwróć słowa w Python String”

Więcej pokrewnych odpowiedzi na “Odwróć słowa w Python String” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu