【问题标题】:Create a tuple from an input in Python从 Python 中的输入创建元组
【发布时间】:2023-04-06 07:43:01
【问题描述】:

这是我的例子:

>>> a=input ('some text : ')  # value entered is 1,1
>>> print (a)
1,1

我想要一个元组 (1, 1)

我该怎么做?

【问题讨论】:

    标签:
    python
    python-3.x
    input
    tuples