lcls = locals()
for i in range(10):
    name = 'x' + str(i)
    lcls[name] = i
print(x9)
locals()['xc'] = 999
print(lcls)
