若要实现无限次输出“加油”,应使用以下哪个代码?
>while True:print("加油")
>while false:print(“加油")
>for i in range(100):print("加油")
>if True:print(“加油“)