DEV Community

Vishal J
Vishal J

Posted on • Updated on

15-07-2024 Day 4 Python learning

This is a series of Python learning blog from parottosalna community by kaniyam foundation

This blog is based on this video Operators, Conditionals, Input | Python | ParottaSalna"

To watch the full series check this youtube playlist

  • Colab Notebook link

  • Creating a calculator

  • single division gives result in flat value

  • calculator include arithmetic operations like Addition, subtraction, division,
    modules - to find the remainder; modules have the symbol of percentage %

  • num1 = int(input("Enter Number 1"))
    mum2 = int(input("Enter Number 2"))
    result = num1+num2
    print("result is", result)

Top comments (0)