從0到1入門Python(筆記1)

Preparation before class

< First intro book of python for rookies >


Fundimental

tips:

1 文件開(kāi)頭加上 #coding:utf-8

2 function()基本可以無(wú)限嵌套

  • exp
a=3 
b=int(str(int(str(a))))
print(type(b))

run: <class 'int'>

3 Python區(qū)分大小寫

一眯杏、變量

例:answer=42
answer = 42
標(biāo)識(shí)符 賦值符
var賦值時(shí)夜焦,= 后可為int,int可進(jìn)行四則運(yùn)算岂贩;可為string茫经,string可相加,表示鏈接多個(gè)string萎津,可與int相乘卸伞,表示復(fù)制,復(fù)制次數(shù)=int锉屈,可套用函數(shù)瞪慧。
  • exp
a=1/5+7*2-10
b='2'*2
c=int(b)
d='de'+' '+'amor'
code result
print(a) 4.199999999999999
print(b) 22
print(c) 22
print(d) de amor

二、print()

print()內(nèi)可進(jìn)行四則運(yùn)算部念,可套用函數(shù)運(yùn)算。
  • exp
code result
print(a+c) 26.2
print(a-c) -17.8
print(a*c) 92.39999999999998
print(a/c) 0.1909090909090909
print(type(c)) <class 'int'>

三氨菇、String

單引號(hào)和雙引號(hào)公用是一樣的儡炼,三個(gè)引號(hào)被用于過(guò)長(zhǎng)段的文字或者說(shuō)明,只要三引號(hào)不玩就可以隨意換行寫下文字查蓉。
string可相加乌询,表示鏈接多個(gè)string,可與int相乘豌研,表示復(fù)制妹田,復(fù)制次數(shù)=int唬党,可套用函數(shù)

1、string分片索引鬼佣,string[ ]
  • rules

    lyric = "Isn't she lovely"

    I s n ' t s h e l o v e l y
    0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
    -16 -15 -14 -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 -3 -2 -1
  • exp

    lyric="Isn't she lovely"
    
    code result
    print(lyric[2]) n
    print(lyric[-3]) e
    print(lyric[0:10]) #the 10th is excluded驶拱,截取第0~第9個(gè)字符 Isn't she
    print(lyric[-4:-1]) #the -1st is excluded vel
    print(lyric[-1:-4] 空,說(shuō)明無(wú)法R-->L倒排索引到字母
    print(lyric[-3:]) #From -3 to the end ely
    print(lyric[:7]) #From start to 7 Isn't s
  • 實(shí)際應(yīng)用場(chǎng)景

    url = 'http://ww1.site.cn/14d2e8ejw1exjogbxdxhj20ci0kuwex.jpg'
    file_name = url[-10:]
    print(file_name)
    
    run result: 0kuwex.jpg
    
    phone_number1 = '13862861236'
    hiding_number1 = phone_number1.replace(phone_number1[3:7],'*' *4)
    print(hiding_number1)
    
    run result: 138****1236
    
2晶衷、字符串的方法

Python的對(duì)象擁有各種功能蓝纲、特性,專業(yè)術(shù)語(yǔ)稱之為——方法(method)
假設(shè)對(duì)象為 computer晌纫,computer可以計(jì)算税迷。則語(yǔ)法可表示為 computer.calculate()

3、字符串格式化符

對(duì)于需要填空的情況锹漱,可用.format()進(jìn)行批量處理箭养。

  • exp
print('Thomas get {} runs in the {} inning'.format('2','8'))
print('Thomas get {run_number} runs in the {inning_number} inning'.format(run_number=3+1,inning_number='9+1'))
print('Thomas get {1} runs in the {0} inning'.format('2','8'))

run result:
Thomas get 2 runs in the 8 inning
Thomas get 4 runs in the 9+1 inning
Thomas get 8 runs in the 2 inning

變量需在.format()內(nèi)賦值,否則報(bào)錯(cuò)哥牍,例子如下

run_n=1
inning_n=1
print(run_n)
print('Thomas get {run_n} runs in the {inning_n} inning'.format(run_n,inning_n))

run result:
1
Traceback (most recent call last):
  File "D:/python_lab/test.py", line 5, in <module>
    print('Thomas get {run_n} runs in the {inning_n} inning'.format(run_n,inning_n))
KeyError: 'run_n'






<center>? 疑問(wèn)</center>

下面的代碼為何可以先對(duì)變量賦值毕泌,然后可以帶入,還需要學(xué)習(xí)

city = input("write down the name of city:")
url = "http://apistore.baidu.com/microservice/weather?citypinyin={}".format(city)

此段代碼可以填補(bǔ)空缺中的城市數(shù)據(jù)






四砂心、函數(shù)

Python3.50 版本有68個(gè)內(nèi)建函數(shù)(build-in function)懈词。
內(nèi)建函數(shù):就是python自帶函數(shù)
python官網(wǎng)中對(duì)各函數(shù)的介紹:https://docs.python.org/3/library/functions.html

  • 創(chuàng)建函數(shù)
    • 常見(jiàn)語(yǔ)法單詞

      1. def(即define)含義是創(chuàng)建/定義函數(shù) ←關(guān)鍵字
      2. arg(即argument,參數(shù))
      3. return(即返回結(jié)果) ←關(guān)鍵字

      Syntax 語(yǔ)法

      def function (arg1, arg2):
          return 'something'
      

      語(yǔ)法口訣

      Define a function named 'function' which has two arguments: arg1 and arg2, returns the result ---'something'

      注意辩诞!

      • 符號(hào)只能使用英文符號(hào)
      • 需要縮進(jìn)的地方一定要縮進(jìn)坎弯,縮進(jìn)是為了表明語(yǔ)句和邏輯的從屬關(guān)系,是python中最顯著的特征之一译暂。
  • exp
    def fahrenheit_converter(C):#定義Fahrenheit_converter函數(shù)抠忘,函數(shù)參數(shù)為 C
         fahrenheit = C*9/5+32 #定義變量fahrenheit與C的轉(zhuǎn)換關(guān)系
         return str(fahrenheit)+'°F' #返回string化的Fahrenheit
    C2F =fahrenheit_converter(35) #定義變量C2F等于Fahrenheit_converter,參數(shù)值等于35
    print(C2F) #打印C2F變量
     
      ---
    run result:
    95.0°F
    
  • Practice
    def hypotenuse_calculator(a,b):
        h=pow(pow(a,2)+pow(b,2),0.5)
        return str(h)
    
    long_side=hypotenuse_calculator(3,4)
    print('the longest side equals to '+long_side)
    
    ---
    run result:
    the longest side equals to 5.0
    

五外永、傳遞函數(shù)與參數(shù)類型

傳遞參數(shù)的方式有兩種:a.位置參數(shù) positional argument b.關(guān)鍵詞參數(shù) keyword argument

  • 位置參數(shù):按照參數(shù)的位置傳入?yún)?shù)值的方式叫位置參數(shù)崎脉。

    def trapezoid_area(base_up, base_down, height):
        return 1/2*(base_up + base_down)*height
        
    trapezoid_area(1,2,3)
    
  • 關(guān)鍵詞參數(shù):直接帶上關(guān)鍵詞賦值,關(guān)鍵詞的順序可以隨意排列伯顶。

    def trapezoid_area(base_up, base_down, height):
        return 1/2*(base_up + base_down)*height
        
    trapezoid_area(base_up=1,base_down=2,height=3)
    

    注意: 位置參數(shù)和關(guān)鍵詞參數(shù)可混用拴孤,但關(guān)鍵詞方式不能放在前部,且必須按照定義參數(shù)時(shí)暑中,參數(shù)的排列順序來(lái)钦讳。

  • exp
trapezoid_area(1,2,height=3)     #正確
trapezoid_area(base_up=1,base_down=2,3)    #錯(cuò)誤
trapezoid_area(height=3,base_down=2,1)    #錯(cuò)誤

?P48-50有疑問(wèn)

六掐暮、設(shè)計(jì)自己的函數(shù)

  • exp

    def text_create(name,msg): #定義函數(shù)的名稱和參數(shù)蝎抽;
        desktop_path='c://users/lokoR/Desktop/' #open打開(kāi)新建文件的路徑
        full_path=desktop_path+name+'.txt' #傳入的參數(shù)加上桌面路徑再加上后綴就是完整的文件路徑
        file=open(full_path,'w') #打開(kāi)文件,'w'代表作為寫入模式路克,意思是:如果沒(méi)有就在該路徑創(chuàng)建樟结,如果有則覆蓋
        file.write(msg) #寫入傳入的參數(shù)msg
        file.close() #關(guān)閉文本
        print('Done') #顯示 Done
     text_create('hello','hello world') #給參數(shù)賦值养交,name=hello,msg=hello world
    
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末瓢宦,一起剝皮案震驚了整個(gè)濱河市碎连,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌刁笙,老刑警劉巖破花,帶你破解...
    沈念sama閱讀 212,816評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異疲吸,居然都是意外死亡座每,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門摘悴,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)峭梳,“玉大人,你說(shuō)我怎么就攤上這事蹂喻〈型郑” “怎么了?”我有些...
    開(kāi)封第一講書人閱讀 158,300評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵口四,是天一觀的道長(zhǎng)孵运。 經(jīng)常有香客問(wèn)我,道長(zhǎng)蔓彩,這世上最難降的妖魔是什么治笨? 我笑而不...
    開(kāi)封第一講書人閱讀 56,780評(píng)論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮赤嚼,結(jié)果婚禮上旷赖,老公的妹妹穿的比我還像新娘。我一直安慰自己更卒,他們只是感情好等孵,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著蹂空,像睡著了一般俯萌。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上上枕,一...
    開(kāi)封第一講書人閱讀 50,084評(píng)論 1 291
  • 那天绳瘟,我揣著相機(jī)與錄音,去河邊找鬼姿骏。 笑死,一個(gè)胖子當(dāng)著我的面吹牛斤彼,可吹牛的內(nèi)容都是我干的分瘦。 我是一名探鬼主播蘸泻,決...
    沈念sama閱讀 39,151評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼嘲玫!你這毒婦竟也來(lái)了悦施?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書人閱讀 37,912評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤去团,失蹤者是張志新(化名)和其女友劉穎抡诞,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體土陪,經(jīng)...
    沈念sama閱讀 44,355評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡昼汗,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了鬼雀。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片顷窒。...
    茶點(diǎn)故事閱讀 38,809評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖源哩,靈堂內(nèi)的尸體忽然破棺而出鞋吉,到底是詐尸還是另有隱情,我是刑警寧澤励烦,帶...
    沈念sama閱讀 34,504評(píng)論 4 334
  • 正文 年R本政府宣布谓着,位于F島的核電站,受9級(jí)特大地震影響坛掠,放射性物質(zhì)發(fā)生泄漏赊锚。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評(píng)論 3 317
  • 文/蒙蒙 一却音、第九天 我趴在偏房一處隱蔽的房頂上張望改抡。 院中可真熱鬧,春花似錦系瓢、人聲如沸阿纤。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)欠拾。三九已至,卻和暖如春骗绕,著一層夾襖步出監(jiān)牢的瞬間藐窄,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 32,121評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工酬土, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留荆忍,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,628評(píng)論 2 362
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像刹枉,于是被迫代替她去往敵國(guó)和親叽唱。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容