for语句

Posted llhhcc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for语句相关的知识,希望对你有一定的参考价值。

For <X> in<list>:

<body>

循环变量X在每次循环时,被赋值成对应的元素内容

与while循环的区别

For 循环的次数固定,即所遍历的序列长度

While为无限循环

Range(n)返回一个可迭代的对象

 List(range(n))将迭代类型转换为列表类型

输入

import math
def sav_money_in_n_week(money_per_week,increase_money,total_week):
    saving=0
    money_list=[]
    for i in range(total_week):
        money_list.append(money_per_week)
        saving =math.fsum(money_list)

        print(第{}周,存入{},账户累计{}元.format(i+1,money_per_week,saving))
        money_per_week+=increase_money
def main():
    money_per_week=float (input(请输入每周存入金额))
    increase_money=float (input(请输入每周递增金额))
    total_week=float (input(请输入总共的周数:))
    sav_money_in_n_week(money_per_week,increase_money,total_week)
if __name__==_main_:
    main()

 

以上是关于for语句的主要内容,如果未能解决你的问题,请参考以下文章

codeblock代码片段

找到KNN for statement的最佳值

Client / Server Interoperability Support Matrix for Different Oracle Versions (Doc ID 207303.1)(代码片段

以下代码片段的算法复杂度

c_cpp 这个简单的代码片段显示了如何使用有符号整数在C中完成插值。 for()循环确定要插入的范围

[AndroidStudio]_[初级]_[配置自动完成的代码片段]