diff --git a/Python/using functions/return.py b/Python/using functions/return.py new file mode 100644 index 0000000000000000000000000000000000000000..9cf8168dab9dd77fdb886e59f6a28fed662efdb5 --- /dev/null +++ b/Python/using functions/return.py @@ -0,0 +1,9 @@ +def stuff(): + print('Hi') + return + print('akhil') + +stuff() + + +#what is the last command executed \ No newline at end of file