Skip to content

Commit 557e232

Browse files
Merge pull request #2 from PavanMudigondaTR/dev
Dev
2 parents e276dcf + b916218 commit 557e232

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

30-dice-roller-program/main.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
import 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+
619
dice_art = {
720
1: ("┌─────────┐",
821
"│ │",

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
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

518
Learn Python in 1 HOUR ⏱ : [Learn Python in 1 hour! 🐍. (2024)](https://youtu.be/ix9cRaBkVe0?feature=shared)

0 commit comments

Comments
 (0)