Learn practical skills, build real-world projects, and advance your career

my-python-notebook

Use the "Run" button to execute the code.

!pip install jovian --upgrade --quiet
import jovian
# Execute this to save new versions of the notebook
jovian.commit(project="my-python-notebook")
a=int(input("Enter first number"))
a
b=int(input("Enter second number"))
b
avg = (a+b)/2
print("average is",avg)
Enter first number2 Enter second number3 average is 2.5