Daniel wrote: > Hi, is there a way to check if a letter entered is an uppercase ASCII > character? > > Thanks > > Daniel If you just want to know if a character is uppercase: if character.isupper(): <some code> If it needs to be ASCII, the simplest way is probably: if ord(character) in range(65, 91): <some code> greg