From 8a951ecb240330027845a859fda52149a401227b Mon Sep 17 00:00:00 2001 From: Sanjana Purbia <71418488+SanjanaPurbia@users.noreply.github.com> Date: Sat, 14 Aug 2021 16:48:02 +0530 Subject: [PATCH] Basic --- twoFunct.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 twoFunct.py 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