week one python格式化輸出

2022-08-10 03:03:12 字數 2565 閱讀 2787

1.多行格式化輸出

(1)

1

#author:larlly

2 name = input("

input your name :")

3 age = input("

input your age :")

4 job = input("

input your job :")

5 salary = input("

input your salary :")

67 info = '''

8----------info of --------------

9name:

10age:

11job:

12salary:

13'''.format(_name=name,

14 _age=age,

15 _job=job,

16 _salary=salary)

17print(info)

(2)

# author:larlly

name = input("input your name :")

age = input("input your age :")

job = input("input your job :")

salary = input("input your salary :")

info = '''

----------info of %s--------------

name:%s

age:%s

job:%s

salary:%s

''' %(name,name,age,job,salary)

print(info)

(3)

1

#author:larlly

2 name = input("

input your name :")

3 age = input("

input your age :")

4 job = input("

input your job :")

5 salary = input("

input your salary :")

67 info = '''

8----------info of --------------

9name:

10age:

11job:

12salary:

13'''

.format(name,age,job,salary)

14print(info)

(4)

# author:larlly

name = input("input your name :")

age = input("input your age :")

job = input("input your job :")

salary = input("input your salary :")

info = """

----------info of ''' + name +'''--------------

name:'''+ name +'''

age:'''+ age +'''

job:'''+ job +'''

salary:'''+ salary +

""".format(name,name,age,job,salary)

print(info)

2.字元創格式化輸出

(1)# author:larlly'''#列印字串

print ("his name is %s " %("a"))

#列印整數

print ("he is %d years old" %(25))

#列印浮點數

print ("his height is %f m" %(1.68))

#列印浮點數(指定保留小數點位數)

print ("his height is %.2f m"%(1.69))

#指定佔位符寬度

print ("name:%10s age:%8d height:%8.2f"%("abc",25,1.69))

#指定佔位符寬度(左對齊)

print("name:%-10s age:%-8d height:%-8.2f"%("abc",25,1.69))

#指定佔位符(只能用0當佔位符)

print ("name:%-10s age:%08d height:%08.2f"%("abc",25,1.69))

#科學計數法

print(format(0.0015,'.2e'))

(2)字串裡面的%是乙個普通字元需要轉義,用%%來表示乙個%

print("磁碟使用率:%d %%"% 7)

螢幕輸出:如下

磁碟使用率:7 %

RAW格式 RAW RGB格式

1.1 影象感測器 通過乙個乙個的感光點對光進行取樣和量化 通常所說的130萬畫素等,指的是有130萬個感光點。每乙個感光點只能感光rgb中的一種顏色。但是,要還原乙個真正影象,需要 每乙個點都有rgb三種顏色 所以,對於ccir601或656的格式,在sensor模組的內部會有乙個 isp模組 會...

qcow格式 raw格式

與普通的 raw 格式的映象相比,有以下特性 a 更小的空間占用,即使檔案系統不支援空洞 holes b 支援寫時拷貝 cow,copy on write 映象檔案只反映底層磁碟的變化 c 支援快照 snapshot 映象檔案能夠包含多個快照的歷史 d 可選擇基於 zlib 的壓縮方式 e 可以選擇...

rar格式與zip格式

區別一 zip 的安裝比較大,並僅僅有英文版 漢化包 rar有官方的簡體中文版,並且安裝很小,不足一兆 區別二 winrar 的壓縮率較高,而zip 的壓縮率更低 區別三 zip 支援的格式很多,但已經較老,不大流行 rar支援格式也很多,並且還是流行的 區別四 zip 僅僅能夠壓縮成zip 格式,...