Skip to content

Commit feeb1be

Browse files
author
rakesh
committed
commit
1 parent d78e53d commit feeb1be

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

random_name.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# You are working in a team of developers.
2+
# Another developer has written the code to import the names in the inputs
3+
# You can run the code to see what this names list looks like.
4+
# Then change the names in the input to see how it imports the names.
5+
6+
# 🚨 Remember to remove the print statement above when you submit.
7+
import random
8+
start = 0
9+
end = len(names) - 1
10+
random_name = names[random.randint(start, end)]
11+
print(f"{random_name} is going to buy the meal today!")

0 commit comments

Comments
 (0)