def 翻轉():
a ="abcd"
c = a[::
-1]print
(c)def 整數次冪(a):if
type
(a)==
int:
c = a ** a
print
(c)else
:print
("數值不為整形"
)def 判斷年份(年份):if
(int
(年份)%4
)==0and
(int
(年份)
%100)!=
0or(int
(年份)
%400)==
0:return
print
(true
)else
:return
print
(false
)# a=[1,1,2,3,5,8,13,2]
# b=list(set(a))
# print(b)
def 成績(
*c):
b=0for i in c:
b=b+i
v=b/
len(c)
return
print
("總:"
,str
(b))
,print
("平均:"
,str
(v))a=[
"你好"
,"你好"
,"愛你"
]dict
=for i in a:
if i not
indict
:dict
[i]=
1else
:dict
[i]+=
1print
(dict
)
a=
["你好"
,"你好"
,"愛你"
]dict
=for i in a:
if i not
indict
:dict
[i]=
1else
:dict
[i]+=
1print
(dict
)
字串分割方法
str = 「line1-abcdef \nline2-abc \nline4-abcd」;
print str.split( ); # 以空格為分隔符,包含 \n
print str.split(』 ', 1 ); # 以空格為分隔符,分隔成兩個
python求和函式sum 詳解
我本來想算幾個int值相加的和,本以為很簡單的事情,結果卻很悲傷,例 sum sum 1,2,3 結果很明顯出現問題報錯 typeerror sum expected at most 2 arguments,got 3傻乎乎的我以為只能算前兩個數的和等於3,就又試了一下 sum sum 1,2 結果...
python函式不定引數求和
想最快的入門python嗎?請搜尋 泉小朵 來學習python最快入門教程。也可以加入我們的python學習q群 902936549,送給每一位python的小夥伴教程資料。先來看python函式定引數求和 def dup1 m n l total 0 total m n l return tota...
python取整函式
1.int 向下取整 內建函式 1 n 3.75 2 print int n 3 3 n 3.25 4 print int n 3 2.round 四捨五入 內建函式 1 n 3.75 2 print round n 4 3 n 3.25 4 print round n floor 向下取整 mat...