Skip to content
Snippets Groups Projects
Commit e7773c79 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

RF: make more readable

parent cd5d3469
No related branches found
No related tags found
1 merge request!23virtual mini pytreat intro
...@@ -96,10 +96,10 @@ a. ...@@ -96,10 +96,10 @@ a.
``` ```
a = [1, 2, 3, 4, 5] mylist = [1, 2, 3, 4, 5]
for elem in a: for element in mylist:
print(elem) print(element)
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment