變數修改注意不同變數賦值時的變數位址變化
變數刪除del 變數名
數字:int,float
字串:
print
('''
hahhaha
hah '''
)
str
="name"
str.center(50,
"-")
out:--
----
----
----
----
----
-name---
----
----
----
----
----
str
="name"
;hometown=
"shanghai"
;print
(str
+hometown)
;out:nameshanghai
print
(str*3
);out:namenamename
布林型別
列表型別
字典型別a+=: c+=a即c=c+a.(其它類似)
and,or,not
a=
1;b=
3;c=10;
a>
0or b<
3and c>
10out:
true
tips:or的優先順序更高
in,not in.
names=
["a"
,"b"];
print
("a"
in names)
;out:
true
複製貼上多一行:ctrl+d
注釋:ctrl+/
name=
input
("name:"
)print
(name)
out:
name:jane(使用者輸入的name具體的值)
jane
tips:
input讀的值都是字串型別,若要用讀取輸入的數字進行計算,則使用int(name)
等型別轉換符號進行轉換
name=
input
("name:"
)age=
input
("age:"
)job=
input
("job:"
)#f表示在f後面的字串有引用變數
msg=f'''
------------info of jane-----------
name:
age:
job:
---------------end-----------------
'''print
(msg)
salary=
8000
if salary <
10000
:print
("掙太少了,建議重新學習"
)out:掙太少了,建議重新學習
tips:縮排(tab鍵縮排4格)內容即為受if約束內容
salary=
8000
if salary <
10000
:print
("掙太少了,建議重新學習"
)else
:print
("前途光明"
)out:掙太少了,建議重新學習
salary=
8000
if salary <
10000
:print
("掙太少了,建議重新學習"
)elif 條件1
:print(1
)elif 條件2
:print(2
)else
:print(3
)
題目:
輸入月薪,根據月薪,輸出相應文案
月薪》5000:差
月薪》10000: 一般
月薪>100000:好
salary=
float
(input
("請輸入你的工資:"))
#把字串型轉換成數字型別
if salary >
100000
:print
("好"
)elif salary>
10000
:print
("一般"
)else
:print
("差"
)
Python快速入門學習筆記(一)
本篇文章適合有其他高階語言基礎的人群閱讀 使用的python版本為python2.7 使用的編輯器為sublime text3 世界始於hello world print hello world 列印hello world,python中 號表示注釋 raw input 函式時系統提供給使用者的函式...
Python學習筆記(一)基礎入門
給大家推薦mooc上北理工嵩天老師講的python課。1.用縮進來區分模組,所以嚴格注意空格和tab。2.一般用新行作為語句結束。但是可用 分為多行顯示 有,可以不需要連線符 4.python可以在同一行中使用多條語句,語句之間使用分號 分割 5.print 預設輸出是換行的,如果要實現不換行需要在...
python入門學習筆記
是現實世界事物在計算機世界中的對映,寫 是將現實世界中的事物用計算機語言來描述。python基本資料型別 數字 number 整型int 浮點型float 布林型bool 非0非空都是true,0 空 none都是false 複數complx j表示 組序列 有序,可用下標操作索引來訪問,切片操作 ...