學習python核心編程-第三章-課後習題筆記

來源:互聯網
上載者:User

3–1. 標識符。為什麼Python 中不需要變數名和變數型別宣告?

python 變數是在定義是內部進行定義

3–2. 標識符。為什麼Python 中不需要聲明函數類型?

定義是內部定義的類型

3–3. 標識符。為什麼應當避免在變數名的開始和和結尾使用雙底線?

雙底線有特殊含義,屬於內部變數

3–4. 語句。在Python 中一行可以書寫多個語句嗎?

可以,用分號隔開就行

3–5. 語句。在Python 中可以將一個語句分成多行書寫嗎?

可以,用反斜線進行續行就行

3–6. 變數賦值

(a)指派陳述式 x, y, z = 1, 2, 3 會在 x、y、z 中分別賦什麼值?

x=1

y=2

z=3

(b)執行z, x, y = y, z, x 後,x、y、z 中分別含有什麼值?

x=3

y=1

z=2

3–7. 標識符。下面哪些是Python 合法的標識符?如果不是,請說明理由!在合法的標

識符中,哪些是關鍵字?

python 標示符以底線或字母開頭,後面可以跟字母數字底線


下面的問題涉及了 makeTextFile.py 和readTextFile.py 指令碼。

3–8. Python 代碼。將指令碼拷貝到您的檔案系統中,然後修改它。可以添加註釋,修改

提示符‘>’太單調了)等等,修改這些代碼,使它看上去更舒服。

#!/usr/bin/env python


import os

ls=os.linesep


#enter file


while True:

       f1=raw_input('input filename: ')

       if os.path.exists(f1):

               print "error the file name %s exists." % f1

       else:

               break


#write to file


all=[]


print "input contanct'.'end"

while True:

       cont=raw_input('input context:')

       if cont !='.':

               all.append(cont)

       else:

               break

print all

file1=open(f1,'w')


for nn in all:

       file1.writelines(nn)


file1.close()

3–9. 移植。 如果你在不同類型的電腦系統中分別安裝有Python, 檢查一下,

os.linesep 的值是否有不同。 記下作業系統的類型以及 linesep 的值。

3–10. 異常。使用類似readTextFile.py 中異常處理的方法取代 readTextFile.py

makeTextFile.py 中對os.path.exists() 的調用。反過來, 用os.path.exists() 取代

readTextFile.py 中的異常處理方法。

#!/usr/bin/env python

#-*- coding:utf-8 -*-

import os

f=raw_input('輸入檔案名稱:')

#try:

#       file1=open(f,'r')

#except IOError,e:

#       print "file open error:",e

#else:

#       for nn in file1.readlines():

#               print nn

#               file1.close()

if os.path.exists(f):

       file1=open(f,'r')

       for nn in file1:

               print nn

file1.close()

3–11.

字串格式化 不再抑制readTextFile.py 中 print 語句產生的 NEWLINE 字元,修改你的

代碼, 在顯示一行之前刪除每行末尾的空白。這樣, 你就可以移除 print 語句末尾的逗號了。

提示: 使用字串對象的 strip()方法

題目的意思應該是print nn 改為 print nn.strip()


3–12. 合并源檔案。將兩段程式合并成一個,給它起一個你喜歡的名字,比方

readNwriteTextFiles.py。讓使用者自己選擇是建立還是顯示一個文字檔。

#ch=raw_input('請選擇w:寫入r:讀取  :')

#if ch=='w':

#elif ch=='r':

#else:

# print 'error'


3–13. 添加新功能。將你上一個問題改造好的 readNwriteTextFiles.py 增加一個新功

能:允許使用者編輯一個已經存在的文字檔。 你可以使用任何方式,無論是一次編輯一行,還

是一次編輯所有文本。需要提醒一下的是, 一次編輯全部文本有一定難度,你可能需要藉助 GUI

工具包或一個基於螢幕文本編輯的模組比如 curses 模組。要允許使用者儲存他的修改儲存到

檔案)或取消他的修改不改變原始檔案),並且要確保原始檔案的安全性不論程式是否正

常關閉)。

#!/usr/bin/env python

#-*- coding:utf-8 -*-


def write():

       filename=raw_input("輸入檔案名稱:")

       fileOne=open(filename,'w')

       allContext=[]

       while True:

               context=raw_input('輸入內容>')

               if context==".":

                       break

               else:

                       allContext.append(context)

               for con in allContext:

                       fileOne.writelines(con)

               fileOne.close


def read():

       filename=raw_input("輸入檔案名稱:")

       while True:

               try:

                       fileTwo=open(filename,'r')

                       break

               except IOError,e:

                       print "the file name not exists" ,e

                       continue

       for cont in fileTwo:

               print cont

       fileTwo.close()


def quit():

       print "by"


def add():

       pass


def operaterFiles():


       choseCheck={'w':write,'r':read,'a':add,'q':quit}

       i=1

       while i<=5:

               op=raw_input('輸入要進行的操作:')

               choseCheck[op]()

               i+=1


if __name__=="__main__":

       operaterFiles()


本文出自 “吾心” 部落格,請務必保留此出處http://leeforget.blog.51cto.com/6950397/1286484

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.