A=["1","2","3"] print(list(map(float,A)).insert(0,1))
I want to insert 1 at the head of the list but this gives me a surprise -- https://mail.python.org/mailman/listinfo/python-list
A=["1","2","3"] print(list(map(float,A)).insert(0,1))
I want to insert 1 at the head of the list but this gives me a surprise -- https://mail.python.org/mailman/listinfo/python-list