mirror of
https://github.com/github/codeql.git
synced 2025-12-25 13:16:33 +01:00
6 lines
195 B
Python
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)) |