python常用基礎

1、type函數: days = 365 print(days, type(days)) 2、類型轉換:str、int、float函數 str_eight = str(8) float_eight = float("8") int_eight = int("8") 3、加減乘除、乘方 + - * /  、** print(10**2)結果爲100 4、list類型 months = [] prin
相關文章
相關標籤/搜索