Python Projects for Beginners
In this blog post, we will learn how to develop 10 simple and interesting Python projects for beginners.
Dice Roll Simulator
Python concepts used: modules, conditions and loops
# Dice roll simulator
import random
while True:
print('1. Roll the...
afiz.hashnode.dev1 min read