我正在使用 qpython3。未更改的类int()
。这是 qpython3 控制台中的示例代码。
>>> a = "8"
>>> a
'8'
>>> type(a)
<class 'str'>
>>> int(a)
8
>>> type(a)
<class 'str'>
类保持字符串。以下将 int 分配给变量作为对比:
>>> a = 8
>>> a
8
>>> type(a)
<class 'int'>
这里的问题是,如果从 中取一个int
字符 input()
,则禁止进一步的数学运算和逻辑比较。