怎么让打印不包含到for语句中,只打印最后结果就可以了。

来源:4-4 Python之for循环

慕妹6595207

2022-09-27 21:24

l = []
sun=a l:
    sun=sun+a
    (sun/)

打印结果

15.0

33.4

45.2

58.8

78.6


写回答 关注

3回答

  • 风雪长安
    2022-11-09 23:26:32

    注意for循环对应的层次,print的缩进位置不一样,对应的不一样,你这是对应的for循环,那么每循环一次就会打印一次,Python对缩进很严格

  • 慕粉1828382520
    2022-10-03 18:14:22

    L = [75, 92, 59, 68, 99];

    sum = 0;

    i = len(L);

    for ch in L:

        sum += ch;

    print(sum/i);


  • 陈友开
    2022-09-28 15:55:02

    # Enter a code

    s1='ABC'

    s2='123'

    s3='xyz'

    sout=''

    for c1 in s1:

        for c2 in s2:

            for c3 in s3:

                sout= sout +c1+c2+c3+'\n'

    print(sout)


Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154167 学习 · 1075 问题

查看课程

相似问题