raw_input() :將所有輸入看做字串,返回字串型別
>>>a = raw_input("input:")
input:123
>>> type(a)
# 字串
>>> a = raw_input("input:")
input:runoob
>>> type(a)
# 字串
input():接收合法表示式,相當於eval(raw_input())
a.接收字串時要加引號
b.接收到數字時,返回數字型別(int, float)
>>>a = input("input:")
input:123 # 輸入整數
>>> type(a)
# 整型
>>> a = input("input:")
input:"runoob" # 正確,字串表示式
>>> type(a)
>>> a = input("input:")
input:runoob # 報錯,不是表示式
traceback (most recent call last):
file "", line 1, in file "", line 1, in nameerror: name 'runoob' is not defined
input():接收任意資料,預設字串處理,返回字串型別
>>>a = input("input:")
input:123 # 輸入整數
>>> type(a)
# 字串
>>> a = input("input:")
input:runoob # 正確,字串表示式
>>> type(a)
# 字串
Python 輸出函式和輸入函式
例 print輸出函式有兩種格式化方法支援格式化輸出 1.字元 格式化輸出 print 格式化文字 變數1,變數2,變數n 具體用法如下表所示 d 十進位制整數 o八進位制整數 x十六進製制整數 s字串 f,f,e,e 浮點數 字元 格式化文字有兩個以上的變數,變數必須用括號括起來,中間用逗號隔開格...
Python基礎之矩陣輸入
經常在嘗試python一些函式功能時想隨便輸入乙個矩陣感覺怪麻煩 python是拿list表示陣列的,畢竟不是矩陣 matrix 實驗室 laboratory 嘛2333 python直接複製格式標準的資料是可以識別成list的,但我要是輸入乙個規整的矩陣就繁瑣了些。比如這種 1 4 7 10 2 ...
Python之輸入輸出
在python中提供了input 函式,來讀取你輸入的編碼。input 函式可以讀取乙個python的表示式作為輸入,並將結果輸出。s input 請輸入您需要輸入的值 請輸入您需要輸入的值5 s 5 我們可以看到在上述 中,我們用提示語句提示需要輸入的值,然後輸出s的值。值得注意的是,控制台輸出的...