===================
A = ['零', '一', '二', '三']
B = ['zero', 'one', 'two', 'three']
for index, item in enumerate(A):
print('变量A的赋值是 *{}*, 变量B的赋值是 *{}*'.format(item, B[index]))
try:
print(eval(item))
except Exception as err:
print('错误原因:{}'.format(err))
exec('{} = B[index]'.format(item))
print('现在变量A的值 *{}* 作为新变量 *{}*, 里面的赋的值是 *{}*'.format(A[index], item, eval(item)))
print('=' * 40)
====================
其实没必要这样用,直接dict就很好用
python为了方便把switch case都取消了,python的dict可以直接代替其他语言的switch case,定义变量就更方便了,甚至dict可以直接赋值自定义函数来代替switch case