mirror of
https://github.com/github/codeql.git
synced 2026-01-12 14:10:21 +01:00
7 lines
139 B
Python
7 lines
139 B
Python
|
|
def two_or_three():
|
|
x = 3
|
|
[0 for x in range(3)]
|
|
return x # Will return 2 in Python 2 and 3 in Python 3.
|
|
|
|
print(two_or_three()) |