美文网首页生信
python unit 3 for loops and whil

python unit 3 for loops and whil

作者: 我最有才 | 来源:发表于2018-08-20 17:27 被阅读0次

    #for loops

    sum=0

    for i  in range(10)  :

        sum=sum+i

        print(sum)

    # while loops is equal to for loops

    sum=0

    i=o

    while i<10:

    sum=sum+i

    print(sum)

    i=i+1

    相关文章

      网友评论

        本文标题:python unit 3 for loops and whil

        本文链接:https://www.haomeiwen.com/subject/ecvliftx.html