Concern was expressed about the greater ________ of work being imposed on teachers.
A weight
B burden
C tension
D intensity
第1题:
第2题:
第3题:
第4题:
第5题:
第6题:
#函数greater()返回两个是数中的最大值 def greater(x, y): if x > y: ######FILL###### _____ else: ######FILL###### _____ x = 4 y = 5 g = greater(x, y) print(g)