Created
July 19, 2018 17:28
-
-
Save bee-san/63fc4bbce76756e39d4ef3e59308b12f to your computer and use it in GitHub Desktop.
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
| x = range(-5, 5) | |
| new_list = [] | |
| for num in x: | |
| if num < 0: | |
| new_list.append(num) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment