“inverta a corda em python” Respostas de código

como reverter uma string no 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

Como imprimir uma entrada para trás em Python

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

string reversa em python

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

reverta as palavras em um python de cordas

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

inverta a corda em python

string = "sachin"
print(string[::-1])
Sachin

inverta a corda em python

g = "My name is IRONMAN" #reverse the string
print(str(g[::-1]))
tymepas

Respostas semelhantes a “inverta a corda em python”

Perguntas semelhantes a “inverta a corda em python”

Procure respostas de código populares por idioma

Procurar outros idiomas de código