摘要: Python 3.8可以使用f字符串调试功能: 1 test_dict = {1: "1", 2: "2", 3: "3"} 2 print(f"{test_dict=}") 3 var_name = f'{test_dict=}'.split('=')[0] 4 print(var_name) 阅读全文
posted @ 2020-09-27 15:29 空水 阅读(424) 评论(0) 推荐(0) 编辑