Hi Everybody,
I want to make a List in Pyton script, for make few datum plans in abaqus.
I tried to make this lop:
i=0
Mylist= {}
while 0<= i <=10:
Mylist['i']=i
i=i+1
This loop is not good.
I would like to use the methods update, but i don't know what is the syntax for add a new number...