+ 1
How to decide 33 coding projects? Help pls
7 odpowiedzi
+ 5
Назар Марусич
Are you asking us to think for you?
Only you can decide on which projects will be suitable for you.
Making decisions for yourself is part of the learning process, & the growing up process.
Good luck.
As you work your way through your projects, you may have some specific code related questions.
We would be pleased to assist you with them
+ 5
Назар Марусич
Please attach your attempt here so the community may review it.
I am sure we can assist, once we see your attempt
+ 2
Назар Марусич
Nice attempt!
I have adjusted your code and added a few things for you to look at.
I hope my example answers your questions
https://code.sololearn.com/c3sbcD3ZM03l/?ref=app
+ 2
Rik Wittkopp oh, i am understood it, thanks!
+ 1
Назар Марусич
While we await your code, here are some snippets for you regarding summing lists.
nums = [6,3,7,9]
print(sum(nums)) #25
#or
total = 0
for num in nums:
total += num
print(total) #25
+ 1
Rik Wittkopp https://code.sololearn.com/cp4L55zuoHlf/?ref=app
I am only started to learning python, maybe here a lot of mistakes
0
Rik Wittkopp
I am need help with adding all the numbers to the list, I don't understand how to find the sum. can you tell me how to do it?