作業:
x = 0
y = 0
screen.blit(bg,(x,y))
x = x+100
y = y+200
screen.blit(enemy1,(x,y))
x = x+50
screen.blit(enemy1,(x,y))
y = x+50
screen.blit(enemy1,(x,y))
x = x+50
screen.blit(enemy1,(x,y))
x = x+50
screen.blit(enemy1,(x,y))
筆記:第三節
回顧上週
英語print print print print print print
列印 列印 列印 列印 列印 列印
本週知識點
print( )方法
『小黑』用引號引起來的叫做字串
讓計算機說答案
變數用於斌值的容器
第四節回顧上節
作業3月25號
1 檔案內容如下,標題為 姓名,性別,年紀,薪資 egon male 18 3000 alex male 38 30000 wupeiqi female 28 20000 yuanhao female 28 10000 要求 從檔案中取出每一條記錄放入列表中,列表的每個元素都是的形式 dic lis...
作業3月24號
1 編寫課上講解的有參裝飾器準備明天默寫 def auth db type defdeco func name input your name strip pwd input your password strip if db type file print 基於檔案的驗證 if name egon...
作業3月17號
1 編寫檔案修改功能,呼叫函式時,傳入三個引數 修改的檔案路徑,要修改的內容,修改後的內容 既可完成檔案的修改 def info import os path input 請輸入路徑 front input 請輸入修改內容 later input 請輸入修改後內容 with open path,r ...