“Substitua o número por string python” Respostas de código

Substitua o número por string python

    x = re.sub(r"\d+", "NUMB", str(x))       #Replaces digits with 'NUMB'
Troubled Tern

string python substitua letras por números

from string import ascii_letters

code = code = "1111702460830000Lu05"
code = "".join([str(ascii_letters.index(c)) if c in ascii_letters else c for c in code])
print(code)
The_BLUESTEEL

Respostas semelhantes a “Substitua o número por string python”

Perguntas semelhantes a “Substitua o número por string python”

Mais respostas relacionadas para “Substitua o número por string python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código