python的輸入輸出
輸入:input(), raw_input()
1. input(): 用於收集數字輸入
>>>a=input("input a:")
input a:2
>>> a
#可以輸入乙個變數:
>> a=input("inputa:")
input a:a
>>> a
#無法接收字元
>>>a=input("input a:")
input a:b
traceback (mostrecent call last):
file "", line 1,in
a=input("input a:")
file "", line 1, in
nameerror: name'b' is not defined
2. raw_input():把使用者輸入的任何內容都儲存為乙個字串;
>>>a=raw_input('input a:')
input a:2
>>> a
'2'3. 強制型別轉換
>>>a='2'
>>>b=float(a)
>>> b
2.0不能轉換則會丟擲錯誤
4. 密碼輸入
python 自帶了乙個庫 getpass
>>>from getpass import getpass
>>>password=getpass()
password:
>>>password
'rrrr'
5. 清理使用者的輸入
使用strip()函式
6. 格式化輸出
對字串使用format()函式
例1>>>greeting='good {} ,{} are fine!'
>>>time='morning'
>>>people='i'
>>>print greeting.format(time,people)
good morning ,i are fine!
花括號的值和format()中的變數一一對應
例2greeting='good, are fine'
>>>print greeting.format(time='morning',people='i')
good morning,i are fine
>>>greeting
'good, are fine'
>>>time='morning'
>>>people='i'
>>>print greeting.format(time=time,people=people)
good morning, i are fine
例3people=',,'
>>> print people.format('students','teachers','parents')
students,teachers,parents
花括號中的值從0開始
people=''
>>> print people.format('students','teachers','parents')
parents
花括號中的標號,和format中的變數是對應的
Python 基本輸入輸出
1.輸出 print hello,world python3中print需要加 print hello,world 多個字串之間用 逗號連線 print hello world 且遇到逗號會輸出乙個空格。2.注釋 python中用 注釋 print hello 3.變數 python中定義變數時不需...
python基本輸入輸出《二》
python中不用標點,但是對各種縮排有嚴格的要求。單行注釋為 多行注釋為三個單引號或者三個雙引號。輸入為input 輸出為print 注 input 接收的所有資料都是字串,如果要做數字操作,需要進行型別轉換 str 資料 把其他型別轉化為字元型 int 資料 把其他型別轉化為整型 input 接...
Python基本語法 輸入輸出
這是為學爬蟲學習的最基本的一些語法知識,實用至上,沒有對c 那麼深入。python確實挺.簡單的,不是難度方面。使用print 直接輸出即可 標準輸出字串 print hello,world 輸出變數 a 10 是的你沒有看錯,不需要指定資料型別 print a 中間使用逗號間隔開即可 print ...