为什么我的输入语句没有将 float 转移到列表中?

Why is my input statement not transferring float into the list?

Pycharm Screenshot!

#Accept a list of 5 float numbers as an input from the user numlist=[]

对于范围 (0,5) 中的 i: numlist[i]=numlist.append(float(input("输入一个数字:")))

打印(数字列表)

#输出:[None, None, None, None, None]

删除 numlist[i]=append 方法 returns None 因此列表中的元素被替换为 None.