下面Python代码执行后输出是( )。
>num = 0 while num <= 5: num += 1 if num == 3: continue print(num, end='#')
1#2#4#5#6#
1#2#4#5#6
1#2#3#4#5#6#
1#2#3#4#5#6