8000 Refactoring project description. · AngroshMA/intro-to-python@e2df459 · GitHub
[go: up one dir, main page]

Skip to content

Commit e2df459

Browse files
committed
Refactoring project description.
1 parent 6622a8c commit e2df459

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

session_05/slides_5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ while times_in_loop <= 100:
318318
x = 1
319319
while x <= 100:
320320
print(x)
321-
times_in_loop = times_in_loop + 1
321+
x = x + 1
322322

323323
for y in range(1, 101):
324324
print(y)

session_09/project_info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Once done, send your project (the GitHub link of your repo) to UK-DLKPMGPYTHONLE
99
## Project requirements
1010

1111
The project should:
12-
1. Be hosted on [GitHub](https://github.com/).
12+
1. Be hosted on [GitHub](https://github.com/) (all your work must be pushed to GitHub).
1313
2. Contain at least one variable.
1414
3. Contain at least one conditional (`if/else`) statement.
1515
4. Contain at least a function (`my_cool_func()`).

0 commit comments

Comments
 (0)
0