String字串
將float轉成字串
str(float)
將字串內的文字_ 改變成you
test_string.replace('_','you')
Float
只留float小數點後兩位format(float value,'.2f')
簡單計算功能
總和sum(salary)
陣列長度
len(salary)
基本運算
a**b 等於 a的b次方
定義函數
def substract(a,b):z = a - b
return z
answer = substract(99999,2343)
print(answer)
顯示時間,現在幾點
import datetime
datetime.datetime.now()
if , elif , else 用法
def check_profit_or_not(buy_price,sell_price):
if buy_price > sell_price :
print("虧錢")
elif sell_price > buy_price :
print("賺錢")
else :
print("沒賺沒賠")
check_profit_or_not(10000,12000)
FOR loop迴圈
for v in range(90):
print(v)
print("*********************************************")
for x in [10,20,30,40]:
print(x)
print("*********************************************")
for x in 學生名單:
print(x)
print("*********************************************")
for x in 學生名單.values():
print(x)
print("*********************************************")
print(學生名單.get("小白"))
While迴圈
i = 0
while i < 5 :
print(i)
i+=1
沒有留言:
張貼留言