1.除法
a =
9b =
2r1 = a/b
print
(r1)
# 4.5
r2 = a//b
print
(r2)
# 4r3 = a%b
print
(r3)
# 1r4 =
divmod
(a,b)
print
(r4)
# (4, 1)
2.輸出百分比
方式1:直接使用引數格式化:
: 顯示小數點後2位
顯示小數點後2位:
print
('percent: '
.format(42
/50))
不顯示小數字:,即,將2改為0:
print
('percent: '
.format(42
/50))
方式2:格式化為float,然後處理成%格式: %
與方式1的區別是:
(1) 需要對42/50乘以 100 。
(2) 方式2的%在外邊,方式1的%在裡邊。
'''
'''#顯示小數點後2位:
print
('percent: %'
.format(42
/50*100))
#顯示小數點後1位:
print
('percent: %'
.format(42
/50*100))
#只顯示整數字:
print
('percent: %'
.format(42
/50*100
))
a =
3b =
11percent =
"%.2f%%"%(
float
(a)/
float
(b)*
100)
print
(percent)
# '27.27%'
percent ="".
format
(float
(a)/
float
(b))
print
(percent)
# '27.27%'
#預設順序:
print
('percent1: , percent2: '
.format(42
/50,42
/100))
percent1:
84.00
%, percent2:
42.0
%#指定順序:對應第2個引數; 對應第1個引數。
print
('percent2: , percent1: '
.format(42
/50,42
/100))
percent2:
42.0
%, percent1:
84.0
%
float(a)/float(b)
a =
3b =
11r =
float
(a)/
float
(b)print
(r)# 0.2727272727272727
python基礎教程
乙個簡單的客戶機 import socket s socket.socket host socket.gethostname port 1234 s.bind host,port s.listen 5 while true c,addr s.accept print got connection f...
Python基礎教程
本教程不包括python的安裝,ide採用spyder pytho2.7 1.print pow 2,3 8 print 2 3 8這裡pow函式表示乘方,與 功能相同。2.abs 10 10abs函式用來求乙個數的絕對值。3.round 0.6 1.0 round 0.4 0.0round函式將浮...
Python 基礎教程
python由guido van rossum於1989年底發明,第乙個公開發行版發行於1991年。像perl語言一樣,python 源 同樣遵循 gpl gnu general public license 協議。本教程主要針對python 2.x版本的學習,如果你使用的是python 3.x版本...