Please help me with Python coding

Asked 2 years ago, Updated 2 years ago, 23 views

I entered computer science for the first time this year and learned C language and Python, but the professor didn't teach me any Python They're telling me to code it in Python, but I don't know what to do ㅠ<

python

2022-09-21 15:14

1 Answers

Python actors are students.

It's a flowchart that takes num 10 times and outputs the sum and average of the numbers, right?


count = sum = 0

while True:
    count += 1
    num = int(input("Input number please : "))
    sum = sum + num

    if count >= 10:
        break
    else:pass

ave = sum / 10
print("Thank you. sum : {}, ave : {}".format(sum, ave))

How about writing it like this?


2022-09-21 15:14

If you have any answers or tips


© 2025 OneMinuteCode. All rights reserved.