今天習題任務
一、Python 平方根
教程網址https://www.runoob.com/python3/python3-square-root.html
def sq(a): c=a**0.5 return ca=float(input('請輸入:',))print('數字 {0} 的平方根: {1}'.format(a, sq(a)))
二、Python 隨機丟色子,看看資料如何
import randomfor i in range(1,21): a=random.randint(1,6)print('隨機數為',a)
我們使用了 random 模組的 randint() 函式來生成隨機數,randint函式包含括號內兩邊的數.
又將程式完善了下,加了序列,特別需要提醒的是,i 需要指定是不是字串,用str(i)定義好
import randomfor i in range(1,21): a=random.randint(1,6) print(str(i)+'.隨機數為',a)
三、Python 建個文字檔案,讀取文字檔案
with open('t.txt','wt') as myfile: myfile.write('程式測試')
with open('t.txt','wt') as myfile: myfile.write('程式測試')with open('t.txt','rt') as readfile: text=readfile.read()print(text)
最新評論