File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import random
22
3+ # unicode chars for dice faces
4+
5+ # print("\u25CF \u250C \u2510 \u2502 \u2514 \u2518")
6+
7+ # ● ┌ - ┐ │ └ ┘
8+
39# 🎲 Dice Roller Program
410
511# ASCII art for dice faces
12+
13+ # lets build a dictionary to hold the dice art
14+
15+ # dictionary is a combination of key:value pairs in a curly braces {}
16+
17+ # the value is a tuple of strings (matrix of characters) representing each line of the dice face
18+
619dice_art = {
720 1 : ("┌─────────┐" ,
821 "│ │" ,
Original file line number Diff line number Diff line change 11# python-bro-code
22
3+ ## 📊 Progress Status
4+
5+ ![ Progress] ( https://img.shields.io/badge/Progress-30%2F77-blue?style=for-the-badge )
6+ ![ Completion] ( https://img.shields.io/badge/Completion-38.96%25-green?style=for-the-badge )
7+
8+ ** Programs Completed:** 30 out of 77
9+
10+ ```
11+ ████████████░░░░░░░░░░░░░░░░ 38.96%
12+ ```
13+
14+ ---
15+
316[ Bro Code Python YouTube Class] ( https://youtu.be/ix9cRaBkVe0?feature=shared )
417
518Learn Python in 1 HOUR ⏱ : [ Learn Python in 1 hour! 🐍. (2024)] ( https://youtu.be/ix9cRaBkVe0?feature=shared )
You can’t perform that action at this time.
0 commit comments