ONLINE SUMMER TRAINING Online Courses Free Tutorials 
 Placement Preparation 
Artificial Intelligence(AI) & Machine Learning(ML) Training in Jaipur
0 like 0 dislike
2.9k views
in RTU/BTU B.Tech(CSE-VI SEM) PYTHON LAB by Goeduhub's Expert (7.6k points)
Write a python program that takes two numbers  and prints their sum

Goeduhub's Online Courses @Udemy

For Indian Students- INR 570/- || For International Students- $12.99/-

S.No.

Course Name

Apply Coupon

1.

Tensorflow 2 & Keras:Deep Learning & Artificial Intelligence

Apply Coupon

2.

Computer Vision with OpenCV | Deep Learning CNN Projects

Apply Coupon

3.

Complete Machine Learning & Data Science with Python Apply Coupon

4.

Natural Language Processing-NLP with Deep Learning in Python Apply Coupon

5.

Computer Vision OpenCV Python | YOLO| Deep Learning in Colab Apply Coupon

6.

Complete Python Programming from scratch with Projects Apply Coupon

1 Answer

0 like 0 dislike
by Goeduhub's Expert (7.6k points)
edited by
 
Best answer

Write a python program that takes two numbers  and prints their sum 

Getting User Input in Python

  • input ( prompt )
  • raw_input ( prompt )

The input() or  raw_input() function allows user input. These functions have an optional parameter, commonly known as prompt, which is a string that will be printed on the screen whenever the function is called.

In Python 3, raw_input() function has been deprecated and replaced by the input() function.

The user-entered value is always converted to a string and then assigned to the variable.

example-

a=input("enter a value")

print(type(a)) 

#output type of a is string by default in python

a=int(a)

#convert from string to integer by using inbuilt int()

print(type(a)) #output type of a is integer

Output- <class 'str'> 

<class 'int'>

Program :

a=int(input("enter first number : "))

b=int(input("enter second number : "))

print("sum of",a, "and",b,"is",a+b)

Output : 

enter first number :  4

enter second number : 6

sum of 4 and 6 is 10

 


For more Rajasthan Technical University CSE VI Sem Python Lab Experiments Click here

Our Mentors(For AI-ML)


Sharda Godara Chaudhary

Mrs. Sharda Godara Chaudhary

An alumna of MNIT-Jaipur and ACCENTURE, Pune

NISHA (IIT BHU)

Ms. Nisha

An alumna of IIT-BHU

Related questions

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy || Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 
...