python运算符3

ctrl+?整体注释

输出1-100内的奇数:
n=1
>>> while n<101:
...     temp=n%2
...     if temp==0:
...             pass
...     else:
...             print(n)
...     n=n+1

sum([1,2,3])
6

求和:sum([1,2,3])
6

posted @ 2018-04-02 14:10  未来的技术  阅读(127)  评论(0编辑  收藏  举报