how do I do the following?

List all files in your current directory which begin with one alpha character (upper or lowercase) followed by two numbers.

ls -l ?[0-9][0-9]*

should do the trick

printf "%s\n" [A-z][0-9][0-9]*