1.輸入字串
#13222319810101****
nid = ''
while 1:
nid = raw_input("input your id plz")
if len(nid) != len("13222319810101****"):
print 'wrwww.cppcns.coming length of id,input again'
else:
break
print程式設計客棧 'your id is %s'www.cppcns.com % (nid)
2.輸入整數
nage = int(raw_input("input your age plz:\n"))
if nage > 0 and nage < 120:
print 'thanks!'
else:
print 'bad age'
print 'your age is %d\n' % nage
3.輸入浮點型
程式設計客棧fweight = 0.0
fweight = float(raw_input("input your weight\n"))
print 'your weight is %f' % fweight
4.輸入16進製制資料
nhex = int(raw_input('input hex value(like 0x20):\n'),16)
print 'nhex = %x,noct = %d\n' %(nhex,nhex)
5.輸入8進製資料
noct = int(raw_input('input oct value(like 020):\n'),8)www.cppcns.com
print 'noct = %o,ndec = %d\n' % (noct,noct)
本文標題: python採用raw_input讀取輸入值的方法
本文位址:
python中input和raw input區別
這兩個均是 python 的內建函式,通過讀取控制台的輸入與使用者實現互動。但他們的功能不盡相同。舉兩個小例子。1 raw input a raw input raw input 2raw input abc 3 input a input input 4input abc56 traceback ...
python表示語句塊採用 Python學習日記
江林楠學習了一下午後給大家呈現的20分鐘速成python 一些基本的語法 1.python無變數宣告 直接a 即可。2.python為對齊語言,用製表符表示語句塊的巢狀。3.python語句末尾無 4.python不用 表示語句塊,而是採用 如 if a b a c for a in b print...
pyspark採用python3開發
現在時間2017 04 17。python版本3.5支援pyspark python3.6目前還不支援 做法簡單,只需要在bin pyspark中增加 export pyspark python python3 再次開啟bin pyspark即配置完成pyspark採用python3.如果想使用ip...