📜  拆分字符串并转换为 int python 代码示例

📅  最后修改于: 2022-03-11 14:45:36.870000             🧑  作者: Mango

代码示例1
a, b = tuple(int(x) for x in '1 2'.split())