mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
9 lines
144 B
Python
9 lines
144 B
Python
foo = 5
|
|
|
|
bar = "bar"
|
|
print(f'{foo=}')
|
|
print(f'{foo = }')
|
|
print(f'{bar.upper()=}')
|
|
print(f'*{foo=:+<20}*')
|
|
print(f'*{foo=:+<20}{bar.upper()=}*')
|