Skip to content

Commit 64bd70a

Browse files
authored
Python 3 print statement
1 parent 237eefd commit 64bd70a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

responses/03-secondquote.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The `last` variable holds the highest index for the array. Then our random numbe
2121
> ` last = len(quotes) - 1`
2222
2323
Finally, update the line where we print a single quote. Instead of including a number between the brackets, we'll put our random number variable:
24-
` print quotes[rnd]`
24+
` print(quotes[rnd])`
2525

2626
Try running your code a few times and your quotes should now be chosen at random.
2727

0 commit comments

Comments
 (0)