def verificar(n): n=raw_input("Ingrese un texto") c=n[0] if c == c.upper(): print True else: print False
n=0 verificar(n)
def verificar(n): n=raw_input('pingrese un texto') res= n[0]== n[0].upper() return res