Python3基礎篇 print的使用

2021-08-11 02:33:08 字數 1584 閱讀 7490

在python2中有互動函式raw_input()和input()但是在python3中不存在raw_input()函式,只有input()函式,下面我們介紹print做格式化的列印

**

name=input('input you name')

age=input('input you age')

job=input('input you job')

salary=input('input you salary')

print('''

the person information %s

name:%s

age :%s

job :%s

salary:%s

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

結果

input

younamexlucas

input

youage22

input

youjobit

input

yousalary8000

theperson

information

xlucas

name

:xlucas

age:22

job:it

salary

:8000

print(『中午』,end=」) 去掉回車換行符

格式的型別有:

d,i 帶符號的十進位制整數

o 不帶符號的八進位制

u 不帶符號的十進位制

x 不帶符號的十六進製制(小寫)

x 不帶符號的十六進製制(大寫)

e 科學計數法表示的浮點數(小寫)

e 科學計數法表示的浮點數(大寫)

f,f 十進位制浮點數

g 如果指數大於-4或者小於精度值則和e相同,其他情況和f相同

g 如果指數大於-4或者小於精度值則和e相同,其他情況和f相同

c 單字元(接受整數或者單字元字串)

r 字串(使用repr轉換任意python物件)

s 字串(使用str轉換任意python物件)

部分函式:

abs(number),返回數字的絕對值

cmath.sqrt(number),返回平方根,也可以應用於負數

float(object),把字串和數字轉換為浮點數

help(),提供互動式幫助

input(prompt),獲取使用者輸入

int(object),把字串和數字轉換為整數

math.ceil(number),返回數的上入整數,返回值的型別為浮點數

math.floor(number),返回數的下舍整數,返回值的型別為浮點數

math.sqrt(number),返回平方根不適用於負數

pow(x,y[.z]),返回x的y次冪(有z則對z取模)

repr(object),返回值的字串標示形式

round(number[.ndigits]),根據給定的精度對數字進行四捨五入

str(object),把值轉換為字串

python 3 基礎 print 函式

最白話的語言來和大家一起學習python print 是python中最常用的輸出方式 待輸出資料 可以是字串,整數,浮點數,字典,元組,列表等 print 一起學python 輸出字串 一起學python print 1412 輸出數字 1412 str string1 print str 輸出變...

python3內建函式 print

print objects,sep end n file sys.stdout,flush false print objects to the text stream file,separated by sep and followed by end.sep,end,file and flush,...

python3基礎篇 字串

打好基礎知識才能更加地去學習 1.字串是python中最常用的資料型別。可以使用引號 或 來建立字串。建立字串,只要為變數分配乙個值即可。例如 var1 hello world var2 songsong 2.python訪問字串中的值 python 不支援單字元型別,單字元在 python 中也是...