Computer Science, asked by ayana2020, 4 months ago

Aman has written the following code in python: 1a=5 2b=10 3c =a+b print (the sum of a and b is ,3c) while executing the above code he found some error messages instead of the desired result.Help him to get the correct result.​

Answers

Answered by jai696
10

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

a, b = 5, 10

c = a + b

print(f"The sum of a & b is {c}")

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Answered by gagandeepk2008
1
a, b = 5, 10

c = a + b

print(f"The sum of a & b is {c}")


Similar questions