1. 程式人生 > >第四,五章

第四,五章

1.建立模組:在IDLE中新建一個名叫fibo.py檔案,編輯如下圖: 在這裡插入圖片描述 按F5,然後可以在shell中匯入這個模組了 如:

>>>import fibo
>>>fibo.fib(100)
1 1 2 3 5 8 13 21 34 55 89

2.輸入輸出 repr()和str():

>>>s='Hello,world.'
>>>str(s)
'Hello,world.'
>>>repr(s)
"'Hello,world.'"

3.檔案讀寫 先建立一個f檔案 >>>f=open('/tmp/workfile','w')

'/tmp/workfile’為檔名的字串, ‘w’為檔案使用方式的字串 “r”為只讀 ‘w’為只寫 ‘a’為新增到檔案結尾 ‘r+’為可讀可寫