python3入门----条件控制,循环

 条件python a=int(input()) if a == 1: print('a=1') elif a == 2: print('a=2') else: print('a=other')  循环code for a in range(0,10,2): print(a,end=' | ') else: print("----------end----
相关文章
相关标签/搜索