Created
April 26, 2017 05:15
-
-
Save serhii73/db54b7300506d2d549f778ca21ff5c53 to your computer and use it in GitHub Desktop.
to read the list of numbers python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| >>> a = list(map(int, input().split())) | |
| >? 4 -1 4 1 1 | |
| >>> a | |
| [4, -1, 4, 1, 1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment