Question #211

Author: admin
tags: Python  
nums = [1, 2, 3].append(4)
print(nums) # ??
What will be printed
[1, 2, 3]
[1, 2, 3, 4]
[4, 1, 2, 3]
None
Append method returns None.
Rate the difficulty of the question:
easyhard