What will be the output of the following Python program?
def addItem(listParam):
    listParam += [1]
 
Sookshmas = [1, 2, 3, 4]
addItem(Sookshmas)
print(len(Sookshmas))

Posted on by