R
Q. What is the output of the following program? def REVERSE(L):
L.reverse() return(L) def YKNJS(L): List = list() List.extend(REVERSE(L)) print(List) L = [1, 3.1, 5.31, 7.531] YKNJS(L)
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. Which module is used in python to create graphics?
Q. Operators with the same precedence are evaluated from?
Q. What will be the output of this statement?
Q. Which of the following is NOT a valid Python tag?
Q. A return statement with _____ arguments.
Q. What is the output of the following program?
Q. Which function overloads the >> operator?
Q. What is the output of the following program : print 'cd'.partition('cd')
Q. Which of the following is the built in function in python?
Discusssion
Login to discuss.