fork download
  1. S='INFORMATIKA'
  2. print(S.isupper())
  3. S='informatika'
  4. print(S.isupper())
Success #stdin #stdout 0.02s 9124KB
stdin
Standard input is empty
stdout
True
False