“Charcodeat Python” Respostas de código

Charcodeat Python

def charcodeat(string,index):
  if isinstance(string,str) and isinstance(index,int):
    return ord(string[index])
  else:
    raise Exception(f"Error: charcodeat takes a str and an int, received {type(string)} and {type(int)}."
Thankful Toucan

Código Charracter Show Python

>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'
>>>
slaff

Respostas semelhantes a “Charcodeat Python”

Perguntas semelhantes a “Charcodeat Python”

Mais respostas relacionadas para “Charcodeat Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código