# Calculator in python

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1715956205262/f713f298-527d-4373-bb9e-347865e4cd50.png align="left")

Link to see the code:

[https://youtu.be/e9Pe9f9mUVc](https://youtu.be/e9Pe9f9mUVc)

**<mark>Problems that I encountered</mark>**

1. To take multiple inputs to calculate
    
2. Understanding "try" keyword
    
3. How to take input in the python using "input"
    

**<mark>Functions that I have used</mark>**

1. If choice in try choice: Is used as a "use case" statement
    
2. if elif : conditional statement
    
3. continue , break Statement : continue :- to take control back to the previous function
    
    break:- It is used to break the loop and get the control out of the flow .
    
4. while : is a iterative loop
    
5. print() and input() function
    
6. Airthmetic operators:- + - \* /
    
7. list () and map() function is used to take inputs and map() maps the list
    

**<mark>What I learned</mark>**

1. How to take multiple inputs
    
2. What is the use of the above given functions
