heynemann (owner)

Revisions

gist: 112032 Download_button fork
public
Description:
Sample code for before Pynq
Public Clone URL: git://gist.github.com/112032.git
Python
1
2
3
4
5
6
7
8
collection = some_method_return()
 
filtered = []
for item in collection:
  if item.property + item.another > 10:
    filtered.append(item)
 
return filtered.sort()