Python Forum
for loop - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: for loop (/thread-35602.html)



for loop - nadun - Nov-21-2021

How to write code to this with for loop and without 2 for loops


X
XX
XXX
XXXX
XXXXX
XXXX
XXX
XX
X


RE: for loop - Yoriz - Nov-21-2021

https://python-forum.io/misc.php?action=help&hid=52 Wrote:Homework and No Effort Questions
This forum is focused on education. It exists to help people learn Python. We don’t exist to solve others’ problems.
...



RE: for loop - BashBedlam - Nov-21-2021

(Nov-21-2021, 05:07 PM)nadun Wrote: How to write code to this with for loop and without 2 for loops
Have you learned about the effect of abs() on negative numbers yet? Do you know that range() can use negative numbers? (hint hint)


RE: for loop - deanhystad - Nov-22-2021

Do you have to use range?