[Solved] Pseudocode Not Understand Line
[ad_1] With a while loop: n = 1 while n <= (Factor+1): # block of code n = n + 1 or as @Thierry Lathuille said, with for-loop: for n in range(1, Factor + 1): # block of code 2 [ad_2] solved Pseudocode Not Understand Line