Be Fat Script [portable] May 2026
Here's a playful that takes a string and makes it "fat" by adding extra width (spacing or repeating characters):
def be_fat(text, fatness=2): """ Make the given text 'fat' by repeating each character. """ fat_text = '' for char in text: if char.strip(): # if not a space fat_text += char * fatness else: fat_text += char # keep single space return fat_text message = input("Enter something to make fat: ") fatness_level = int(input("How fat? (1-5): ")) result = be_fat(message, fatness_level) print("\nHere's your fat text:") print(result) be fat script
Enter something to make fat: Hello How fat? (1-5): 3 Here's your fat text: HHHeeellllllooo Or if you meant an (a fat character saying "be fat"): Here's a playful that takes a string and