I need to check if the first letter of a list is upper. For that I wrote this simple code, where obviasly my word "Try" starts with capital "T":
h=[]
h.append("Try")
a = str(h[0])
print(a)
print(a.isupper())
BUT when I print a.isupper I get always False. Should I convert the variable in something, or it should be str object? How can I solve this problem