0
def some_func(x): x = "Hi!" print(x)
Why this code is not run, can anyone tell me ?
1 Odpowiedź
+ 7
Because you just defined the function, now you need to call it:
some_func("")
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2286/