[Python] python[Python] python
🎆
Happy New Year
Week 1, 2026
//Paste your solution here if you want to share it publicly
def fireworks(n):
a = 0
row = int((n-1)/2)
space = int((n-3)/2)
for i in range(row):
print((" "*a) + "\\" + (" "*space) + "|" + (" "* space) + "/")
space -= 1
a += 1
print(("-"*n))
a-=1
space += 1
for i in range(row):
print((" "*a) + "/" + (" "*space) + "|" + (" "* space) + "\\")
space += 1
a -= 1
fireworks(100)