• school projects,  ๐Ÿ–ฅ๏ธ Digital Experiments

    Folder creator

    Managing files and directories can at time be a hassle, but with a little bit of Python, you can automate this process easily. Whether youโ€™re studying, organizing projects, preparing for a big task, or just trying to keep your files tidy, this script will help you create directories and subfolders with minimal effort. The best part? Itโ€™s cross-platform, and works on Windows and macOS/Linux. The Script Hereโ€™s a straightforward Python script that: How It Works Cross-Platform Compatibility This script is designed to be cross-platform. As It uses import os, os.path.exists to check for directory existence and os.makedirs to create directories, both of which are part of Pythonโ€™s standard library and…

  • school projects,  ๐Ÿ–ฅ๏ธ Digital Experiments

    Dragon game

    Untitled dragon text adventure game. While taking a college coding course recently, we learned how to make a dragon game in python. In this game we embark with the dragon slayer on an epic adventure, through this mystical castle filled with peril and treasure, in “untitled dragon game.” You find yourself in the Great Hall with paths leading to the Bedroom, Kitchen, and Library. Each room holds secrets and challenges, from hidden items like Armor, Swords, and Potions to encounters with the fearsome Dragon in the Dungeon. Collect five magical items to conquer the dragon and claim victory, or risk becoming its next meal! Navigate using simple commands like ‘go…