Computer Science, asked by duttasrinjoy05, 4 months ago

(5) a=5
b=10
if(a>c>b or c>b>a):
print(c)
elif{b>c>a):
print(b+10)
b=a
a=b
print(c)​

Answers

Answered by rayinnisaideekshitha
0

Answer:

We’ve delivered this post in continuation to our last quiz that included another 20 basic questions on functions in Python. Since it’s an important topic, so we wanted to give it full coverage. Before you move on to start the quiz, let’s listen to a few facts about the subject.

Functions are a useful way to split your code into logical blocks, allow modularization, turn it more readable, and make it reusable. Also, functions are an intuitive way to create interfaces so the programmers can easily publicize their code.

Some cool facts – In Python, a function can return multiple values. It gets possible by returning the result in the form of a tuple. Also, you can list down the functions of a module by using the <getmembers()> function of the <inspect> module.

Explanation:

plss follow me

Similar questions
Math, 2 months ago