下列代码运行后输出 a 的值是()
a, b = 1, 1 while a <= 50: if b > 20: break if b % 4 == 1: b += 4 continue b -= 5 a += 1 print(a)
6
1
20
50