初學Python(六)——輸入輸出
初學Python,主要整理一些學習到的知識點,這次是輸入輸出。
輸入:
# -*- coding:utf-8 -*- ''''' python中的輸出為print java中為syso swift中println ''' #列印一行資料 print "Hello,World! My name is Python" print 100 print 100.001 #另一種方式列印字串 print "Hello","Wolrd!","My name is Python" #print還可以列印表示式的計算結果 print 100+100.001
輸出:
# -*- coding:utf-8 -*- #程式會等待使用者輸入,輸入完畢後按enter鍵才能繼續往下執行 print 'start' name = raw_input() print 'your name is %s' % name print 'end' #有時候輸入的地方使用者看不出來,這個時候需要新增一點提示資訊 name = raw_input('please input your name: ') print 'hello,%s' % name print 'hello',name