Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. list( # Make a list out of...
  2. int( # the value of...
  3. input() # input from the user,
  4. ) # converted to an integer.
  5. .split() # Then, split that.
  6. )
  7.  
  8. map( # Apply the function...
  9. int # (that is, `int()`)
  10. , # ...to every element in the iterable...
  11. input() # (First, take the input from the user,
  12. .split() # and then split it)
  13. ) # ...and return all that as a list
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement