From 7edaff29556298f201bc28d1ab7f7a56501d18f7 Mon Sep 17 00:00:00 2001 From: Akhil Date: Tue, 6 Oct 2020 01:43:01 +0530 Subject: [PATCH] Add new file --- Python/lastexec.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Python/lastexec.py diff --git a/Python/lastexec.py b/Python/lastexec.py new file mode 100644 index 0000000..17bbe15 --- /dev/null +++ b/Python/lastexec.py @@ -0,0 +1,9 @@ +astr = 'Hello Bob' +istr = int(astr) +print('First', istr) +astr = '123' +istr = int(astr) +print('Second', istr) + + +#which line will be last executed? \ No newline at end of file -- GitLab