Python萌新自學日記1

2021-08-30 19:46:51 字數 2448 閱讀 5980

今日小結

作為乙個剛剛開始自學的萌新,為了督促自己的學習,我決定開始更新每一天(或者是幾天目前學習進度為《python程式設計從入門到實踐》的第三章

補上第二章感覺自己會忘的筆記

對於字串大小寫的修改

.title()

使用製表符或換行符來新增空白

\t \n

第三章3-4

#3-4

list_name = ['dad', 'mum', 'sister']

print('dear '.title() + list_name[0].title() + ' thank for your coming')

print('dear '.title() + list_name[1].title() + ' thank for your coming')

print('dear '.title() + list_name[2].title() + ' thank for your coming')

print('wow! '.title() + list_name[2].title() + ' can not come')

#3-5

list_name[2] = 'bob'

print('dear '.title() + list_name[0].title() + ' thank for your coming')

print('dear '.title() + list_name[1].title() + ' thank for your coming')

print('dear '.title() + list_name[2].title() + ' thank for your coming')

#3-6

print('i think i find a bigger table , we can invite more people!'.title())

list_name.insert(0, 'giogio')

list_name.insert(1, 'nanne')

print('dear '.title() + list_name[0].title() + ' thank for your coming')

print('dear '.title() + list_name[1].title() + ' thank for your coming')

print('dear '.title() + list_name[2].title() + ' thank for your coming')

print('dear '.title() + list_name[3].title() + ' thank for your coming')

print('dear '.title() + list_name[4].title() + ' thank for your coming')

print('dear '.title() + list_name[5].title() + ' thank for your coming')

#3-7

print(list_name)

one = list_name.pop(0)

print('i am sorry giogio, dinner can not be held tonight')

two = list_name.pop(0)

print('i am sorry nanne, dinner can not be held tonight')

three = list_name.pop(3)

print('i am sorry jojo, dinner can not be held tonight')

four = list_name.pop(2)

print('i am sorry bob, dinner can not be held tonight')

print('dear '.title() + list_name[0].title() + ' thank for your coming')

print('dear '.title() + list_name[1].title() + ' thank for your coming')

del list_name[0]

del list_name[0]

print('now the list is empty , right?')

今日小結

其實上面這串**還不是第三章的全部,還有後面乙個練習,但是由於時間關係(懶),後乙個練習明天再更新,今天這乙個練習裡的**打了我快乙個小時,原因是發現各種各樣的問題,比如pop彈出元素發現彈錯了,只能一行一行print去檢驗;del刪錯了,也只能一行一行的print檢驗;以及一開始我是打算print出來中文資訊的,後來發現中文好像顯示不出來,於是用起了我的蹩腳英文。

good good study day day up

Python3萌新入門筆記(1)

在之前的教程中,我們已經學會了安裝python以及pycharm。在這裡,我們開啟pycharm,它是一種python ide 整合開發環境 在這個軟體中,我們來學習python的基礎知識。首先,我們先在軟體中,開啟python控制台或者命令列程式。python控制台開啟之後,會直接進入互動式環境,...

萌新PYTHON學習01

an highlighted block class myabc 抽象基類,其中可能並沒有實際可呼叫的 但定義了若干函式名,表示其子類應當也擁有這些函式方法 def func1 pass def func2 pass class myclass myabc 繼承myabc的子類,根據規範,應當實現父...

python 萌新勇士之路

征服內容 1.你目前需要哪些型別 2.變數的定義 3.關鍵字的了解 一 型別 型別有多少呢?我知道你會有疑問,但是目前不用了解那麼多 目前你知道 整型,浮點型,布林型 整型就是整數 進入程式設計環境 print 0,1 1 0 1 1 你看都是整型 print 6261691611169111611...