Ad
Fundamentals
Code
Diff
  • import random as r 
    
    class Dice:
        def __init__(self, faces):
            self.faces = faces
        def __call__(self):
            return r.choice(self.faces)
        
    d = Dice(["⚀", "⚁", "⚂", "⚃", "⚄", "⚅"])
    • import random as r
    • class Dice:
    • def __init__(self, faces):
    • self.faces = faces
    • def roll(self):
    • def __call__(self):
    • return r.choice(self.faces)
    • dice = Dice(["⚀", "⚁", "⚂", "⚃", "⚄", "⚅"])
    • d = dice.roll
    • d = Dice(["⚀", "⚁", "⚂", "⚃", "⚄", "⚅"])
Fundamentals
Code
Diff
  • dice=lambda:__import__("random").choice("⚀⚁⚂⚃⚄⚅")
    • import random
    • dice=lambda:random.choice("⚀⚁⚂⚃⚄⚅")
    • dice=lambda:__import__("random").choice("⚀⚁⚂⚃⚄⚅")
Code
Diff
  • def you_are_cool(n="Taki"):
        if not isinstance(n, str):
            return "Wait, so your name ISN'T a string of text?! That's wild!"
        n = n.strip()
        if not n:
            return "There is no name, so I'm not complimenting you. LOL"
        if len(n) > 100:
            return "Man, you have an insanely long name! Do people call you by your full name or just a nickname?"
        if n.isdigit():
            return "Are you sure? That looks like a number. Unless you're secretly a robot with a numerical name!"
        return f"Hello {n}, you are very cool!"
        
    # edge case go BRRR
    • def you_are_cool(n="Taki"):
    • if not isinstance(n, str):
    • return "Wait, so your name ISN'T a string of text?! That's wild!"
    • n = n.strip()
    • if not n:
    • return "There is no name, so I'm not complimenting you. LOL"
    • elif len(n) > 100:
    • if len(n) > 100:
    • return "Man, you have an insanely long name! Do people call you by your full name or just a nickname?"
    • elif n.isdigit():
    • if n.isdigit():
    • return "Are you sure? That looks like a number. Unless you're secretly a robot with a numerical name!"
    • else:
    • return f"Hello {n}, you are very cool!"
    • return f"Hello {n}, you are very cool!"
    • # edge case go BRRR
Code
Diff
  • def you_are_cool(n="Taki"):
        if not isinstance(n, str):
            return "Wait, so your name ISN'T a string of text?! That's wild!"
        n = n.strip()
        if not n:
            return "There is no name, so I'm not complimenting you. LOL"
        elif len(n) > 100:
            return "Man, you have an insanely long name! Do people call you by your full name or just a nickname?"
        elif n.isdigit():
            return "Are you sure? That looks like a number. Unless you're secretly a robot with a numerical name!"
        else:
            return f"Hello {n}, you are very cool!"
        
    # edge case go BRRR
    • def you_are_cool(n):
    • def you_are_cool(n="Taki"):
    • if not isinstance(n, str):
    • return "Wait, so your name ISN'T a string of text?! That's wild!"
    • elif n.strip() == "":
    • n = n.strip()
    • if not n:
    • return "There is no name, so I'm not complimenting you. LOL"
    • elif len(n.strip()) > 100:
    • elif len(n) > 100:
    • return "Man, you have an insanely long name! Do people call you by your full name or just a nickname?"
    • elif n.strip().isdigit():
    • elif n.isdigit():
    • return "Are you sure? That looks like a number. Unless you're secretly a robot with a numerical name!"
    • else:
    • return "Hello " + n.strip() + ", you are very cool!"
    • return f"Hello {n}, you are very cool!"
    • # edge case go BRRR