第六周 第十一章全部習題

2021-08-18 19:20:52 字數 1703 閱讀 3911

11-1 城市和國家

city_functions.py

def union(city,country):

return city + ',' + country

test_cities.py

import unittest

from city_functions import union

class test(unittest.testcase):

def test1(self):

form = union('santiago', 'chile')

self.assertequal(form, 'santiago,chile')

unittest.main

注意在pycharm裡執行時,最後一行「main」後不能像書上那樣有括號,不然會無法讀取測試內容。

11-2 人口數量

函式:

def union(city, country, population):

return city + ',' + country + '- population ' + str(population)

測試:

import unittest

from city_functions import union

class test(unittest.testcase):

def test1(self):

form = union('santiago', 'chile',population=5000000)

self.assertequal(form, 'santiago,chile- population 5000000')

unittest.main

11-3 雇員

類:

class employee:

def __init__(self, first_name, last_name, salary=0):

self.first_name = first_name

self.last_name = last_name

self.salary = salary

def give_raise(self, salary_plus=5000):

self.salary += salary_plus

return (salary_plus)

測試**:

import unittest

from city_functions import employee

class test(unittest.testcase):

def setup(self):

self.e1 = employee('bob', 'stevin')

self.e2 = employee('stuart', 'kevin', 5000)

def test_give_default_raise(self):

self.assertequal(str(self.e1.give_raise()), '5000')

def test_give_custom_raise(self):

self.assertequal(str(self.e2.give_raise(3000)), '3000')

第十一章課後習題

11 1城市和國家 編寫乙個函式,它接受兩個形參 乙個城市名和乙個國家名。這個函式返回乙個格式為 city,country 的字串,如 santiago,chile。將這個函式儲存在乙個名為 city functions.py 的模組中。建立乙個名為 test cities.py 的程式,對剛編寫的...

演算法導論第十一章習題11 2 4

linknode.h includeusing namespace std class link class linknode linknode int num key num next null int getkey link.h include linknode.h class head cla...

《鳥哥linux》 第十一章課後習題答案

1.在linux上可以找到哪些shell?哪個檔案記錄可用的shell?兒linux預設的shell是?1.bin bash,bin tcsh,bin csh 2.etc shells 3.bash,亦即是 bin bash 2.在shell環境下,有個提示符 prompt 他可以修改嗎?要改什麼?...