I have a question regarding python. So I have this list
x = [a,b,c,d,e,f,g,h,i,j]
and the function
def insert(values):
return values.insert(3,"Hey")
print(insert(x))
basically what I'm trying to do is to insert the word Hey into the fourth index, however, I just get "None" as a reply when I run the code, and I'm not quite sure what the issue is. I'm pretty new to python and programming in general