A、no bad thing
B、not bad things
C、no any bad things
D、in no way bad thing
第1题:
第2题:
__________ knowledge 学习知识
第3题:
__________ knowledge 传授知识
第4题:
第5题:
#函数greater()返回两个是数中的最大值 def greater(x, y): if x > y: ######FILL###### _____ else: ######FILL###### _____ x = 4 y = 5 g = greater(x, y) print(g)