Learn practical skills, build real-world projects, and advance your career
pip install jovian --upgrade
Collecting jovian Note: you may need to restart the kernel to use updated packages. Downloading jovian-0.2.38-py2.py3-none-any.whl (68 kB) Requirement already satisfied, skipping upgrade: click in c:\users\abhij33t\anaconda3\lib\site-packages (from jovian) (7.1.2) Requirement already satisfied, skipping upgrade: requests in c:\users\abhij33t\anaconda3\lib\site-packages (from jovian) (2.24.0) Requirement already satisfied, skipping upgrade: pyyaml in c:\users\abhij33t\anaconda3\lib\site-packages (from jovian) (5.3.1) Collecting uuid Downloading uuid-1.30.tar.gz (5.8 kB) Requirement already satisfied, skipping upgrade: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\users\abhij33t\anaconda3\lib\site-packages (from requests->jovian) (1.25.9) Requirement already satisfied, skipping upgrade: certifi>=2017.4.17 in c:\users\abhij33t\anaconda3\lib\site-packages (from requests->jovian) (2020.6.20) Requirement already satisfied, skipping upgrade: idna<3,>=2.5 in c:\users\abhij33t\anaconda3\lib\site-packages (from requests->jovian) (2.10) Requirement already satisfied, skipping upgrade: chardet<4,>=3.0.2 in c:\users\abhij33t\anaconda3\lib\site-packages (from requests->jovian) (3.0.4) Building wheels for collected packages: uuid Building wheel for uuid (setup.py): started Building wheel for uuid (setup.py): finished with status 'done' Created wheel for uuid: filename=uuid-1.30-py3-none-any.whl size=6507 sha256=7747e9cfead65f92432ad589049197706e98fcf512b8a4d0cd474e38fbb1f0cb Stored in directory: c:\users\abhij33t\appdata\local\pip\cache\wheels\1b\6c\cb\f9aae2bc97333c3d6e060826c1ee9e44e46306a178e5783505 Successfully built uuid Installing collected packages: uuid, jovian Successfully installed jovian-0.2.38 uuid-1.30

Performing Arithmetic Operations using Python

1. The population of a town is 198568. Out of them 45312 are men and 35678 are women. Find the number of children in the town.

total_population = 198568
men = 45312
women = 35678
no_of_children = total_population - (men + women)
print("no_of_children : ",no_of_children)
no_of_children : 117578

2. A shopkeeper has 2425 boxes of 24 pencils each. How many pencils do all the boxes have in all?