update link python is python 3
$ python --version
Python 2.7.6
$ python3 --version
Python 3.4.3
$ alias python=python3
$ python --version
Python 3.4.3
update link python is python 3
$ python --version
Python 2.7.6
$ python3 --version
Python 3.4.3
$ alias python=python3
$ python --version
Python 3.4.3
set default python
newDict = {1:"One",
2:"Two",
3:"Three"}
x=newDict.setdefault(4,"Four")
print(newDict[4])
#returns Four
newDict2 = {1:"One",
2:"Two",
3:"Three",
"Hello":"World"}
y=newDict.setdefault("Hello","Yellow")
print(newDict2["Hello"])
#returns World
dict1 = {1:"One",2:"Two"}
x=dict1.setdefault(3,"Three")
x=dict1.setdefault(2,"Duo")
print(dict1)
#prints {1: 'One', 2: 'Two', 3: 'Three'}
#Therefore if value doesn't exist it is given default value, else value of key is returned.
update link python is python 3
$ python --version
Python 2.7.6
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us