Created
January 13, 2015 01:34
-
-
Save philk/c858c8c6b10ad4db2227 to your computer and use it in GitHub Desktop.
list comprehension
This file contains 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
results = [] | |
for dev in devices: | |
if device_byname in dev: | |
results.append(dev) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment