编写一个python程序:使用 for 语句计算1~100的奇数和。
sum=0
for count in range(1,101,2):
sum=sum+count
print("1+3+5+...+99=",sum)