mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
2 lines
89 B
Python
2 lines
89 B
Python
dictionary = {1:"a", 2:"b", 2:"c"} # BAD: The `2` key is duplicated.
|
|
print(dictionary[2]) |