为使程序段1和程序段2实现相同的功能,可在划线处填写的代码是?( )
#程序段1
s=0
t=1
while t<=6:
s=s+t
_______________
print(s)
#程序段2
for t in range(1,7,2):
t=2
t=6
t=t+1
t=t+2