Python第一單元測試(答案)

2022-07-28 09:30:29 字數 732 閱讀 9043

一. 1、b  2、a  3、b  4、ac  5、c  6、d  7、d  8、b  9、c  10、d

二. 1、×  2、√  3、√  4、×  5、√

三. 1、str;int  2、xyz  3、初值;結束值;步長  4、縮排;tab;4;space(空格)

四. 1、

a =int(input())

if a%3 ==0:

print(1)

if a%2 ==0:

print(2)

2、

a =int(input())

if a<0:

print(-a)

if a>=0:

print(a)

3、

a =int(input())

b =int(input())

if a>b:

print

(a)if b>a:

print(b)

五.

import

random

a = random.randint(1,10)

b = random.randint(1,10)

c = random.uniform(1,10)

c = (round(c,2))

print(a+b-c)

我們下次開始新的單元了,第一單元只是鋪墊,後面會有更大的挑戰等著dalao們,拭目以待喲~886!

Python 單元測試

一 假設我們編寫了一段程式,主要功能是完成阿拉伯數字和羅馬數字之間的轉換 在羅馬數字中,利用7個字母進行重複或者組合來表達各式各樣的數字 i 1 v 5 x 10 l 50 c 100 d 500 m 1000 還有一些關於構造羅馬數字的規則。此程式的框架如下 其中,class romanerror...

python 單元測試

assertequal a,b assertnotequal a,b 斷言值是否相等 assertis a,b assertisnot a,b 斷言是否同一物件 記憶體位址一樣 assertlistequal list1,list2 assertitemnotequal list1,list2 斷言...

Python單元測試

本文章整理自 使用python3.6編寫乙個單元測試demo,例如 對學生student類編寫乙個簡單的單元測試。1 編寫student類 usr bin env python3 coding utf 8 class student object def init self,name,score s...