diff --git a/twoFunct.py b/twoFunct.py new file mode 100644 index 0000000..45f9ef2 --- /dev/null +++ b/twoFunct.py @@ -0,0 +1,10 @@ +def values(): + x=10 + def inner(): + x=0 + print(x) + + inner() + print(x) + +values() \ No newline at end of file