#!/usr/bin/env python # -*- coding:utf8 -*- name = input("请输入您的名字:") print (name) ---------------------------------------------- Python 2.0 Python 3.0 input == eval raw_input == input ------------------------------------
input:會根據使用者的輸入來做類型的轉換raw_input:則會把使用者的輸入都當作一個字串來處理例子:
如輸入“57 + 3”:input會得到整數60raw_input會得到字串” 57 + 3”
以上就是Python文法練習--使用者互動的內容,更多相關內容請關注PHP中文網(www.php.cn)!