數值型別
1、數值型別包括整型int和浮點型float
2、整型int
(1)、整型int的作用:
用來記錄人的年齡,出生年份,學生人數等整數相關的狀態
(2)、整型int的定義:
age=18
birthday=1990
student_count=48
(3)、整型的使用規則:
數值大小沒有限制,且內建支援複數及其運算和比較
整數可以與浮點數相加
3、浮點型float
(1)、浮點型的作用:
用來記錄人的身高,體重,薪資等小數相關的狀態
(2)、浮點型的定義:
height=172.3
weight=103.2
salary=15000.89
(3)、浮點型使用規則:
數值大小沒有限制,且內建支援複數及其運算和比較
整數可以與浮點數相加
9 python 列表 元組 字典
1.列表 a a b c abc print a a b c abc hello pop 末尾刪除 a.pop print a a b c index 索引 print a 0 a 1 a b print a.index b 1 insert 插入 a.insert 0,ajing print a ...
Python筆記9 Python中的json
不了解json的可以先取看看json python中有自帶的json編碼器和解碼器 dumps loads dump load 以上四種方法是python中json的主要處理方法 定義兩個序列 l1 1,2,3,123 l2 dumps轉換 newl1 json.dumps l1 newl2 jso...
9 Python中的類(二)
子類繼承父類的屬性和方法,但不能繼承父類的私有屬性和私有方法 屬性名或方法名字首為兩個下劃線 類的繼承示例 class myclass class name myclass def init self,x 10,y 20,name myclass self.x x self.y y myclass....