mirror of
https://github.com/mtshiba/pylyzer.git
synced 2025-07-08 01:54:59 +00:00
5 lines
106 B
Python
5 lines
106 B
Python
name = "John"
|
|
|
|
print(f"Hello, {name}!")
|
|
print(f"Hello, {nome}!") # ERR
|
|
print(f"Hello, {name + 1}!") # ERR
|