garimasingh128 / awesome-python-projects

📱 ✅ Some awesome projects in python! 📱 ✅
http://garimasingh.me/awesome-python-projects/
MIT License
915 stars 268 forks source link

Rolling dice #6

Open garimasingh128 opened 3 years ago

garimasingh128 commented 3 years ago

Dice Rolling Simulator

The Goal: Like the title suggests, this project involves writing a program that simulates rolling dice. When the program runs, it will randomly choose a number between 1 and 6. (Or whatever other integer you prefer — the number of sides on the die is up to you.) The program will print what that number is. It should then ask you if you’d like to roll again. For this project, you’ll need to set the min and max number that your dice can produce. For the average die, that means a minimum of 1 and a maximum of 6. You’ll also want a function that randomly grabs a number within that range and prints it. Concepts to keep in mind:

Random Integer Print While Loops

issue-label-bot[bot] commented 3 years ago

Issue-Label Bot is automatically applying the label feature_request to this issue, with a confidence of 0.88. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

yogi6591 commented 3 years ago

i have created this program,asking for pull request permission. and yes it's just a simple program not with GUI,so if you want i will create the GUI,if possible.

garimasingh128 commented 3 years ago

I believe it was already instructed to start working on an issue when it is assigned to you and you hadn't asked for assignment before. Nevertheless, please keep this in mind. You can now create a PR for the simple code and we'll review it and get back to you!

yogi6591 commented 3 years ago

Ok sure, i'll take care of it for the next time. For now i have created a PR,please check it.

Thanks.