Please tell me step by step mistake in my coding | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
- 2

Please tell me step by step mistake in my coding

4321 432 43 4 Correct coding row = 1 while (row<=4):    col=4    while (col>= row):      print (col, end=" ")      col = col-1    row=row+1    print () My coding row = 4 while (row>=1): col=4 while (col>= 1): print (col, end=" ") col = col-1 row=row-1 print ()

5th Sep 2019, 6:36 AM
Yash Garg
Yash Garg - avatar
2 Antworten
+ 2
This is really the 5th time youve asked about this problem😐 Others have tried to explain (and explain they did), maybe you should do the Python tutorial first😉
5th Sep 2019, 6:44 AM
Trigger
Trigger - avatar
0
I just need the explanation of the mistake I have committed for the given pattern step by step
5th Sep 2019, 11:43 AM
Yash Garg
Yash Garg - avatar