My First Day using Python

2021 i am to late to use python

Today is my first day to learn python 3.9.0

I am using VSCode to exicute my python code.

a=10
b=15

I have declared a and b as a datatype.

06-04-2021 (Code)

code:

a=10
b=15
sum = a + b
multi =a * b
sub = a - b
div = a / b
mod = a % b
Power = a**3

if(a<b):
    print("a ",a," is smaller then b ",b);

In code i have used all the arithmetic operation which i know while exicuting the program.

06-04-2021 (Preview)

Last updated

Was this helpful?