fork download
  1. # your code goes here
  2. s = 'this is a string'
  3. print 'Islower?' , s.islower()
  4. print s.islower()
Success #stdin #stdout 0s 23296KB
stdin
Standard input is empty
stdout
Islower? True
True