# MinaCoding2026_TriangleEmojis

# TriangularEmojis

**For *MinaCoding2026*** *Day 8: Triangles,*  **TriangularEmojis** is coded in **Python** and places emojis in triangular sections.

## Poetry

```javascript
Emojis
Placing and Stacking
Overlaying different placements
Triangular formats
Emojis
```

## Images

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/5e891653-8252-4230-90bf-3d429a0e0593.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/bb89d123-5ec2-430c-8f91-0b2c207f9ebe.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/d05a4da2-f2df-4fcf-b628-294ab9d086dd.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/be0b452c-9b5b-4747-908a-4a18f255b28e.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/2a73bb78-e55f-49db-acbf-1825514c7c51.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/2faa2ae0-7133-4be6-b181-10727d4abb7d.png align="center")

![](https://cdn.hashnode.com/uploads/covers/61d25a2b0413645f5c7beb00/3c7b3796-f721-4b3e-b422-e8a9be6ce9cd.png align="center")

## Python Code

```python
count = 10 
for i in range(1, count + 1):
    print("🍿" * i + "🧂" * abs(i-count) + "🧊" * abs(i-count - 1) + "🥕" * i)
    print("🥚" * i + "🥐" * abs(i-count) + "🍼" * abs(i-count - 1) + "🍗" * i)
```

```python
count = 6
for i in range(1, count + 1):
    print("🍿" * i + "🍗" * abs(i-count) + "🧊" * abs(i-count - 1) + "🥚" * i)
for i in range(1, count + 1):
    print("🥕" * i + "🍗" * i + "🧂" * abs(i-count - 1) + "🥚" * i + "🍗" * i) 
```

```python
count = 7 
for i in range(1, count + 1):
    print("🍿" * i + "🍗" * abs(i-count) + "🧊" * abs(i-count - 1) + "🥚" * i)
    print("🥚" * i + "🥕" * i + "🧂" * abs(i-count - 1) + "🥕" * i)
```

```python
count = 4 
for i in range(1, count + 1):
    print("🥚" * i + "🥕" * abs(i-count) + "🧂" * abs(i-count - 1) + "🥕" * i)
for i in range(1, count + 1):
    print("🧊" * i + "🍿" * abs(i-count) + "🧊" * abs(i-count - 1) + "🧂" * i)
for i in range(1, count + 1):
    print("🍗" * i + "🥚" * abs(i-count) + "🧊" * abs(i-count - 1) + "🍿" * i)
```

```python
count = 7
for i in range(1, count + 1):
    print("🍗" * i + "🥕" * abs(i-count) + "🧂" * abs(i-count - 1) + "🥕" * i + "🧂" * abs(i - count - 1))
for i in range(1, count + 1):
    print("🧊" * i + "🧂" * abs(i-count) + "🍗" * abs(i-count - 1) + "🧂" * i + "🍗" * i + "🧊" * abs(i-count - 1))
for i in range(1, count + 1):
    print("🧂" * i + "🥚" * abs(i-count) + "🧊" * abs(i-count - 1) + "🍗" * i + "🧊" * abs(i-count - 1))
```

```python
count = 7 
for i in range(1, count + 1):
    print("🍿" * i + "🍗" * abs(i-count) + "🧊" * abs(i-count - 1) + "🥚" * i)
```

```javascript
count = 10 
for i in range(1, count + 1):
    print(" "* (abs(i - count) *5) + "🍗" * i + "🧂" * abs(i-count) + "🧊" * abs(i-count - 1) + "🥕" * i)
    print(" "* i + "🍿" * i + "🧂" * abs(i-count) + "🥚" * abs(i-count - 1) + "🧂" * i)
```
