Skip to content

Commit f61033c

Browse files
committed
Created code for tutorial 21
1 parent 3f22377 commit f61033c

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

Python/21_python_main.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import tuna_21
2+
import random
3+
4+
tuna_21.fish()
5+
6+
x = random.randrange(1, 1000)
7+
print(x)

Python/tuna_21.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def fish():
2+
print('I am a tuna feesh!')

0 commit comments

Comments
 (0)