summaryrefslogtreecommitdiff
path: root/comp/work/7/friends.py
diff options
context:
space:
mode:
Diffstat (limited to 'comp/work/7/friends.py')
-rwxr-xr-xcomp/work/7/friends.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/comp/work/7/friends.py b/comp/work/7/friends.py
new file mode 100755
index 0000000..5d23111
--- /dev/null
+++ b/comp/work/7/friends.py
@@ -0,0 +1,7 @@
+friends = ["john", "ben", "sam", "micky mouse", "donald duck"]
+
+print(*friends, sep='\n')
+friends.reverse()
+print("\n\n\n")
+print(*friends, sep='\n')
+