fork download
  1. # your code goes here
  2. s='sum rises in the east.'#split
  3. p=s.split(" ")
  4. print p
  5. p=s.upper()
  6. print p.upper()
Success #stdin #stdout 0.02s 6776KB
stdin
Standard input is empty
stdout
['sum', 'rises', 'in', 'the', 'east.']
SUM RISES IN THE EAST.