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
/********************************** | |
* LearnPress Courses Grid | |
* By WP Academy.PK | |
**********************************/ | |
.wpac-learnpress-grid .widget-body { | |
text-align: center; | |
display: flex; | |
} | |
.wpac-learnpress-grid .widget-body .course-entry { | |
text-align: center; |
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
"""input manatees: a list of "manatees", where one manatee is represented by a dictionary | |
a single manatee has properties like "name", "age", et cetera | |
n = the number of elements in "manatees" | |
m = the number of properties per "manatee" (i.e. the number of keys in a manatee dictionary)""" | |
def example1(manatees): | |
for manatee in manatees: | |
print manatee['name'] | |
def example2(manatees): |