brennerm / PyTricks

Collection of less popular features and tricks for the Python programming language
MIT License
3.07k stars 503 forks source link

Raw string integers to integers list #39

Closed goutham2027 closed 9 years ago

goutham2027 commented 9 years ago

Returns integers list when inputted with string of integers.

st0le commented 9 years ago

map(int, input().split())

NamPNQ commented 9 years ago

@goutham2027 like @st0le is better

brennerm commented 9 years ago

I agree with @st0le's way as well.

goutham2027 commented 9 years ago

Even I like @st0le's way.

brennerm commented 9 years ago

Would you like to change it in your code ? :) And please don't ask for user input. Just assign a string and use it.

goutham2027 commented 9 years ago

Updated.