You are on page 1of 1

Abhaya (to All - Entire Audience):

7:07 PM: 1. notepad++ - https://notepad-plus-plus.org/


2. python - https://www.python.org/downloads/
3. Pycharm - https://www.jetbrains.com/pycharm/download/#section=windows
4. https://wiki.python.org/moin/IntegratingPythonWithOtherLanguages

https://github.com/zhiwehu/Python-programming-exercises/blob/master/100%2B%20Python
%20challenging%20programming%20exercises.txt
www.sanfoundry.com/python-problems/

http://www.dsf.unica.it/~fiore/LearningPython.pdf
https://github.com/PlamenStilyianov/Python/blob/master/Mark%20Lutz%20-%20Learning
%20Python%2C%205th%20Edition%20-%202013.pdf

Immutable means you cannot change the value (numbers, string, tuples)
Ex:
Mutale means you can change the value

list2-list(tup)
list2
tup=list2.extend(list2)

list1=list[1,2,3,4,5,5,5,6,7,7]

choice=input("enter choice 1 for deposit 2 withdraw 3 pin change")


if choice==1:
deposit()
elif choice==2:

You might also like