标签:usr utf8 bsp pytho while python bin env int
#!/usr/bin/env python # -*- coding:utf8 -*- n = 1 s = 0 while n < 101: s = s + n n = n + 1 print(s)
python写出1-100的和
原文地址:https://www.cnblogs.com/yuan3/p/10938176.html