可以用print()输出,输入的话,是用input(),他是python的一个内置方法
>>>
type
(
input
)
<
class
'builtin_function_or_method'
>
输入的字符串保存在变量name中,然后打印name
>>> name
=
input
(
'username:'
)
username:jack
>>>
print
(name)
jack
2024-03-30 19:36:45
可以用print()输出,输入的话,是用input(),他是python的一个内置方法
>>>
type
(
input
)
<
class
'builtin_function_or_method'
>
输入的字符串保存在变量name中,然后打印name
>>> name
=
input
(
'username:'
)
username:jack
>>>
print
(name)
jack