“Python umgekehrt eine Schnur umgekehrt” Code-Antworten

wie man eine Zeichenfolge in Python umgeht

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

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

Rückwärtsschnur in Python

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

Python umgekehrt eine Schnur umgekehrt

# Slice notation takes the form [start:stop:step]. In this case, 
# we omit the start and stop positions since we want the whole string. 
# We also use step = -1, which means, "repeatedly step from right to left by 
# 1 character".

'hello world'[::-1]

# result: 'dlrow olleh'
Terrible Toad

Umkehren Sie die Wörter in einer String -Python um

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

Python umgekehrt eine Schnur umgekehrt

#linear

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

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

Python umgekehrt eine Schnur umgekehrt

# Library
def solution(str):
    return ''.join(reversed(str)) 
  
# DIY with recursion
def solution(str): 
    if len(str) == 0: 
        return str
    else: 
        return solution(str[1:]) + str[0] 
      
Mackerel

Ähnliche Antworten wie “Python umgekehrt eine Schnur umgekehrt”

Fragen ähnlich wie “Python umgekehrt eine Schnur umgekehrt”

Weitere verwandte Antworten zu “Python umgekehrt eine Schnur umgekehrt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen