dm/python/test.py

14 lines
216 B
Python
Raw Normal View History

2024-07-10 20:05:41 +08:00
a=[]
succeed={0:'计算机基础', 1:'计算机概念', 2:'通信技术', 3:'计算机网络'}
for i in succeed:
a.append(succeed[i])
result_string = ''.join(set(a))
print(result_string+'需要加强')
2024-07-03 14:08:43 +08:00