Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions dice_rolling_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
#Checking the user input to start the program.
while correct_word == False:

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?>")
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?>")

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

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

if user_dice_chooser == 6:
Expand Down