This will prepare your input, which is mix of string and number, into a list that contain correct data type.
-
-
Save neizod/1870951 to your computer and use it in GitHub Desktop.
Sanitize Input String or Number
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
| sanitize = [(str, int)[v.isdigit()](v) for v in input().split()] |
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
| sanitize = [(str, int)[v.isdigit()](v) # check if v is digit or not, then parse it. | |
| for v in input().split()] |
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
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2012 Nattawut Phetmak <http://about.me/neizod> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | |
| 0. You just DO WHAT THE FUCK YOU WANT TO. |
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
| { | |
| "name": "sanitize_input_string_or_number", | |
| "description": "sanitize the input into string or number.", | |
| "keywords": [ | |
| "input", | |
| "string", | |
| "number" | |
| ] | |
| } |
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
| sanitize = [(str, int)[v.isdigit()](v) for v in input().split()] | |
| # stdin: | |
| # 1 2 3 4 a b c | |
| expected = "[1, 2, 3, 4, 'a', 'b', 'c']" | |
| print("expected: " + expected) | |
| print("actual: " + sanitize) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment