fork download
  1. example = {
  2. 'name': 'james',
  3. 'age': 15,
  4. 'school': 'some'
  5. }
  6.  
  7. name, age, _ = example.values()
  8. print(name, age)
Success #stdin #stdout 0.02s 9084KB
stdin
Standard input is empty
stdout
james 15