We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d78e53d commit feeb1beCopy full SHA for feeb1be
1 file changed
random_name.py
@@ -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