“Jak odwrócić sznur w Python” 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

Jak wydrukować wejście wstecz w Pythonie

str="Python" # initial string
stringlength=len(str) # calculate length of the list
slicedString=str[stringlength::-1] # slicing 
print (slicedString) # print the reversed string
Wandering Wolf

Odwrotny ciąg w Python

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

Jak wydrukować sznurek odwrotnie w Python

s = "001100"
for x in s[len(s)-1::-1]:
    print(x)
Excited Earthworm

Odwróć słowa w Python String

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

Jak odwrócić sznur w Python

txt = "Hello World"[::-1]
print(txt)
Cute boi pixi

Odpowiedzi podobne do “Jak odwrócić sznur w Python”

Pytania podobne do “Jak odwrócić sznur w Python”

Więcej pokrewnych odpowiedzi na “Jak odwrócić sznur w Python” w Python

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

Przeglądaj inne języki kodu