R
Q. What will be the output of given Python code?
n=7 c=0 while(n): if(n>5): c=c+n-1 n=n-1 else: break print(n) print(c)
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What will be the output of the following Python code?
Q. What is the output of the following code?
Q. What will be the output of statment 2**2**2**2?
Q. What is the output of the following program : print 'cd'.partition('cd')
Q. Which of the following is a feature of Python DocString?
Q. Which of the following functions converts a “string” to “float” in Python?
Q. Find the invalid variable among the following
Q. What will be the output of the following Python code snippet?
Discusssion
Login to discuss.