+ 1
Python - Idle timer table
Its more like challinge for me. When i make more columns in table, more variables, code is to complex to editing. Maybe there are different tips. Someone know diferent way to create same table? https://code.sololearn.com/cNt7HpZ64mkW/#py
3 ответов
+ 1
```
for c in range(1,4,1):
for b in range(1,4,1):
for a in range(1,4,1):
print(a, b, c)
```
https://code.sololearn.com/cwg8BTjUHfK4/
+ 2
Use nested loops.
https://code.sololearn.com/cABX2t64CZhh/#py
0
How did I not think about that!? Everything brilliant so simple.
No I try some adventures with make databases/csv. And playing with float nummbers. I want to learn more and more every day.
Thanks!!