2.5 points
2.5 points
def mystery(l): if l == []: return (l) else: return (l[-1:] + mystery(l[:-1]))What does mystery([31,32,71,18,51]) return?
pairs = [ (x,y) for x in range(3,0,-1) for y in range(2,0,-1) if (x+y)%3 == 0 ]
marks = {"Quizzes":{"Mahesh":[3,5,7,8],"Suresh":[9,4,8,8],"Uma":[9,9,7,6]},"Exams":{"Mahesh":[37],"Uma":[36]}}Which of the following statements does not generate an error?
d = {}Which of the following generates an error?
File Uploading in PHP PHP allow you to upload any type of a file i.e. image, binary or text files.etc..,PHP has one in built global variab...
No comments