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

6 lines
195 B
Python

def print_character_codes_bad(strings):
if strings is not None:
for s in strings:
if s is not None:
for c in s:
print(c + '=' + ord(c))