Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Garbage Containers: Difference between revisions

From Pixelbar
No edit summary
No edit summary
Line 16: Line 16:
If the trash bin is full, you can dispose of the garbage bags using one of the two routes shown on the map.   
If the trash bin is full, you can dispose of the garbage bags using one of the two routes shown on the map.   


- **Option 1:** Through the **front entrance** of **De Kroon** ๐Ÿšช   
- **Option 1:** Through the **front entrance** of **De Kroon** ๐Ÿšช  
   
- **Option 2:** Through the **back door** ๐Ÿšช   
- **Option 2:** Through the **back door** ๐Ÿšช   



Revision as of 20:12, 26 February 2025

Want to check if the trash bin is full? Let this handy Python script do it for you! ๐Ÿ—‘๏ธโœจ

import random

def check_trash_bin():
    status = random.choice(["full", "empty"])
    if status == "full":
        print("โš ๏ธ The trash bin is full! Time to empty it. ๐Ÿ—‘๏ธ")
    else:
        print("โœ… The trash bin is empty. Well done!")

check_trash_bin()

If the trash bin is full, you can dispose of the garbage bags using one of the two routes shown on the map.

- **Option 1:** Through the **front entrance** of **De Kroon** ๐Ÿšช

- **Option 2:** Through the **back door** ๐Ÿšช

Keep things clean and tidy! ๐Ÿงนโ™ป๏ธ