“Charcodeat Python” Kode Jawaban

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

Python Show Charracter Code

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

Jawaban yang mirip dengan “Charcodeat Python”

Pertanyaan yang mirip dengan “Charcodeat Python”

Lebih banyak jawaban terkait untuk “Charcodeat Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya