USR_PWD = raw_input ("Please Input A 10 Digit Password")
if USR_PWD[0] == chr(range(65,90))
print "True"
Line 2 does not work, I'm attempting to check and see if the input's first character is a capital letter (65 is A and 90 is Z). Not even sure if this is the best way to go about it either. I'm a beginner so I could be making a very easy mistake but, thanks for the help.