fork download
  1. mapping = {
  2. '1000268201_693b08cb0e' : ['A child in a pink dress is climbing up a set of stairs in an entry way .', 'A girl going into a wooden building .', 'A little girl climbing into a wooden playhouse .', 'A little girl climbing the stairs to her playhouse .', 'A little girl in a pink dress going into a wooden cabin .'],
  3. '101654506_8eb26cfb60' : ['A brown and white dog is running through the snow .', 'A dog is running in the snow', 'A dog running through snow .', 'a white and brown dog is running through a snow covered field .', 'The white and brown dog is running over the surface of the snow .']
  4. }
  5.  
  6. for i in mapping:
  7. for j in range(0,len(mapping[i])):
  8. mapping[i][j]=mapping[i][j].lower();
  9.  
  10. print(mapping)
Success #stdin #stdout 0.01s 27712KB
stdin
Standard input is empty
stdout
{'101654506_8eb26cfb60': ['a brown and white dog is running through the snow .', 'a dog is running in the snow', 'a dog running through snow .', 'a white and brown dog is running through a snow covered field .', 'the white and brown dog is running over the surface of the snow .'], '1000268201_693b08cb0e': ['a child in a pink dress is climbing up a set  of stairs in an entry way .', 'a girl going into a wooden building .', 'a little girl climbing into a wooden playhouse .', 'a little girl climbing the stairs to her playhouse .', 'a little girl in a pink dress going into a wooden cabin .']}