python update code example

Example 1: command to upgrade python version

python -m pip install pip
#or
python -m pip install –upgrade pip
python -m pip install --upgrade pip

Example 2: how to update python

The explanation would be too long for a grepper answer.
So here is a link to a stackoverflow question:

https://stackoverflow.com/questions/45137395/how-do-i-upgrade-the-python-installation-in-windows-10

Example 3: python dict update

d = {1: "one", 2: "three"}
d1 = {2: "two"}

# updates the value of key 2
d.update(d1)
d1 = {3: "three"}
# adds element with key 3
d.update(d1)

# {1: 'one', 2: 'two', 3: 'three'}

Example 4: python update dictionary

diction[element] = value
# if element not in diction, create new element

Example 5: download python

Step 1: Download Python newest version from

 https://www.python.org/downloads/

Step 2:Install Python
Step 3:Download Pycharm Community free version
Step 4:Install and open Pycharm
Step 5:Write print("Hello New World")
  //Hurray you are about to start python

Example 6: .update python

z = {1: 'One', 2: 'Two'}
x = {0: 'zero', 1: 'one'}
x.update(z) # adds anything new to the dict
print(x)
{0: 'zero', 1: 'One', 2: 'Two'}