abaqus scripting for create a set

hi 

i am writing abaqus script to create a "set " for all the nodes in the model. (one set for one node) i created one set and checked rpy file. it is as follows,

p = mdb.models['c-contours'].parts['tire']

n = p.nodes

nodes = n.getSequenceFromMask(mask=('[#0:44 #10 ]', ), )

p.Set(nodes=nodes, name='Set-2')

here what is this value [#0:44 #10 ]. how do i add all the nodes in my model to create sets. (one set for one node)