其他分享
首页 > 其他分享> > 交通信号灯

交通信号灯

作者:互联网


'''
交通信号灯显示颜色:红灯后是绿灯,绿灯后是黄灯,黄灯后是红灯
'''
def update_light(current):
current_list = ["red","green","yellow"]
n = current_list.index(current)
if n ==(len(current_list)-1):
return current_list[0]
else:
return current_list[n+1]

def test_light_colour():
assert update_light("red")=="green"
assert update_light("green")=="yellow"
assert update_light("yellow") == "red"

标签:current,light,list,update,yellow,信号灯,交通,green
来源: https://www.cnblogs.com/luckyls/p/15411339.html