Python Python 魔法变量 1 2 3 4 dt = {'sep': ' # ', 'end': '\n\n'} print('hello', 'world', **dt) # 等价于 print('hello', 'world', sep=' # ', end='\n\n')