标签:type vpd enter 完成 插入 NPU image 结果 串处理
在Python中,程序接收用户输入的数据的功能即是输入。
input("提示信息")
input
,等待用户输入,输入完成之后才继续向下执行。input
接收用户输入后,一般存储到变量,方便使用。input
会把接收到的任意用户输入的数据都当做字符串处理。password = input(‘请输入您的密码:‘)
print(f‘您输入的密码是{password}‘)
# <class ‘str‘>
print(type(password))
控制台输出结果如下:
标签:type vpd enter 完成 插入 NPU image 结果 串处理
原文地址:https://www.cnblogs.com/JeansLin/p/14913376.html