Iluhakorzun
- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 2
-
Edited PyCharm EDU | Checker's error: infinite loop while revising student's code
AnsweredLesson 7 task 3: correct solution that doesn't cause endless loop def fib(n): result = [] a = 1 b = 1 # first editable field while a < n: result.append(a) ...