“So fügen Sie Platz vor Großbuchstaben in Python hinzu” Code-Antworten

So fügen Sie Platz vor Großbuchstaben in Python hinzu

text = 'WordWordWord'
new_text = ''

for i, letter in enumerate(text):
    if i and letter.isupper():
        new_text += ' '

    new_text += letter
Exuberant Elk

So fügen Sie Platz vor Großbuchstaben in Python hinzu

def cap_space(text):
  new_text = ' '

  for i, letter in enumerate(text):
    if i and letter.isupper():
      new text +=' '
      
    new_text = letter

print(cap_space("helloworld"))
print(cap_space("iLoveMyTeapot"))
print(cap_space("stayIndoors"))
Lovely Llama

Ähnliche Antworten wie “So fügen Sie Platz vor Großbuchstaben in Python hinzu”

Fragen ähnlich wie “So fügen Sie Platz vor Großbuchstaben in Python hinzu”

Weitere verwandte Antworten zu “So fügen Sie Platz vor Großbuchstaben in Python hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen