Skip to content

Commit 7bd4c59

Browse files
Merge pull request geekcomputers#180 from SlimxShadyx/patch-1
Updated some comment and print lines.
2 parents 1c94b60 + 755af5a commit 7bd4c59

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dice_rolling_simulator.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
#Checking the user input to start the program.
1515
while correct_word == False:
1616

17-
user_input_raw = raw_input("\r\nWelcome to the Dice Rolling Simulator! We currently support 6, 8, and 12 sided die! Type [start] to begin!\r\n?>")
17+
user_input_raw = raw_input("\r\nWelcome to the Dice Rolling Simulator! We currently support 6, 8, and 12 sided die! \
18+
Type [start] to begin!\r\n?>")
1819

1920
#Converting the user input to lower case.
2021
user_input = (user_input_raw.lower())
@@ -46,7 +47,8 @@
4647
else:
4748
print "\r\nPlease choose one of the applicable options!\r\n"
4849

49-
#Another inner while loop. This one does the actual rolling, as well as allowing the user to re-roll without restarting the program.
50+
#Another inner while loop. This one does the actual rolling, as well as
51+
#allowing the user to re-roll without restarting the program.
5052
while dicer == False:
5153

5254
if user_dice_chooser == 6:

0 commit comments

Comments
 (0)