Files
codeql/python/ql/src/Metrics/NumberOfParameters2Good.py
2018-11-19 15:10:42 +00:00

13 lines
228 B
Python

def print_fellows(fellows):
for f in fellows:
print(f)
#...
def print_records():
#...
print_fellows(fellows)
print_members(members)
print_associates(associates)
print_students(students)