python基礎 學習筆記

2021-09-02 11:01:38 字數 1032 閱讀 7533

一.輸入和輸出

1.1列印print

1.2輸入input raw_input

1.2.1  input () 有點矯情要求使用者輸入的資料格式必須正確,eg:字串必須加引號,否則丟擲異常

1.2.2  raw_input()沒有input那麼矯情,輸入什麼就列印什麼

1.3 引號和注釋

1.3.1 單引號和雙引號可以巢狀但是不能交叉

1.3.2  #  單行注釋

1.3.3  ''' '''  和 """""" 多行注釋

二、分支和語句

2.1 if 語句

eg1:

if 2 >3 :

print 2

else :

print 3

eg2:根據你輸入的成績,列印等級

score = raw_input("please input your score:")

if score >= 90 :

print 'a'

elif  score >= 80 :

print 'b'

elif  score >= 70 :

print 'c'

elif  score >= 60:

print 'd'

else :

print 'e'

2.2 for 語句

eg:1、迴圈字串

string = "hello world"

for str in string :

print str

eg:2、迴圈數字 借助range(start ,stop, step)

for i in range(10):

print i

for i in range(1,10,2):  奇數

三、陣列和字典

3.1陣列用中括號()表示,裡面的每乙個元素用逗號(,)隔開,元素的資料型別可以不同

[1,2,3,'a',5]

3.2  列表list

3.3  元組()

3.4  字典{}

python學習筆記 Python基礎

雲計算web開發 django框架 科學計算 人工智慧 常用到的庫有numpy pandas matplotlib 等等 系統運維 金融 圖形gui google 豆瓣 知乎 facebook 主要特點是 解釋性 動態語言 強型別定義語言和弱型別定義語言。解釋型 python擁有良好的相容性,在安裝...

Python學習筆記(Python基礎)

1 資料型別和變數 1 字串是以單引號 或雙引號 括起來的任意文字,比如 abc xyz 等 2 如果 本身也是乙個字元,那就可以用 括起來,比如 i m ok 包含的字元是i,m,空格,o,k這6個字元。3 如果字串內部既包含 又包含 可以用轉義字元 來標識 print i m ok 結果為i m...

Python學習筆記(基礎學習)

1 python是一種物件導向的解釋型計算機程式語言 2 python中以行縮排區分 塊,亂用縮排會報錯 3 行末尾加不加分號都可以 4 2中用print hello 3中用print hello 5 以 開頭的語句是注釋 6 當語句以冒號 結尾時,緊接其後縮排的語句視為 塊,但沒有規定一定要用幾個...