mylist = ['banana', 'apple', 'papaya', 'cherry']
revered_list = mylist.reverse()
print(mylist)
print(revered_list)
#Output:
# ['cherry', 'papaya', 'apple', 'banana']
# None
Why is the 'None' given when the variable is printed? What really is happening behind the scene.