Python’s insert returning None?

#!/usr/bin/python numbers = [1, 2, 3, 5, 6, 7] clean = numbers.insert(3, 'four') print clean # desire results [1, 2, 3, 'four', 5, 6, 7] I am getting “None”. What am I doing wrong? Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve … Read more