Python ord()

Configurare noua (How To)

Situatie

The ord() function returns an integer representing the Unicode character.

Solutie

Pasi de urmat

print(ord(‘5’))
print(ord(‘A’))
print(ord(‘$’))

Output:

53
65
36

Tip solutie

Permanent

Voteaza

(11 din 23 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?