Python input 使用
程序员文章站
2022-05-19 21:24:29
...
#!C:\Program Files\Python35/bin
# -*- conding:utf-8 -*-
# author: Frank
user_input = input("please input your name:") #input 函数的使用
print("User input Msg:", user_input)
>>>please input your name: Frank
User input Msg: Frank
# -*- conding:utf-8 -*-
# author: Frank
user_input = input("please input your name:") #input 函数的使用
print("User input Msg:", user_input)
>>>please input your name: Frank
User input Msg: Frank