Quick question:
disc_list=[] #creating an empty list to put the discs into
rad = 70
for i in range(5):
disc_list.append(cmds.polyCylinder( name = 'disc' + str(i), radius = rad, height = 10)[0]) # create discs
cmds.move(0, 10*i, 0, ('disc' + str(i)))
rad = rad*0.7
print disc_list
anyone know why when I print the disc_list
, this is returned:
[u'disc0', u'disc1', u'disc2', u'disc3', u'disc4']
where has the u
come from?