20 lines
153 B
Python
20 lines
153 B
Python
def func(address):
|
|
print(address)
|
|
|
|
|
|
# OK
|
|
"OK"
|
|
|
|
# Error
|
|
"0.0.0.0"
|
|
'0.0.0.0'
|
|
|
|
|
|
# Error
|
|
func("0.0.0.0")
|
|
|
|
|
|
def my_func():
|
|
x = "0.0.0.0"
|
|
print(x)
|