import time
# The string to be printed (in this case, a long string of "E"s)
e_string = "E" * 100000000 # Create a string of 100000000 E's. You can increase this as needed.
# Function to print the string infinitely
def spam_e_string_infinite(chunk_size=100000000, delay=0.05):
# Break the long string into chunks to manage output
chunks = [e_string[i:i+chunk_size] for i in range(0, len(e_string), chunk_size)]
# Infinite loop to keep printing
while True:
for chunk in chunks:
print(chunk)
time.sleep(delay) # Add a short delay to avoid overwhelming the system
# Calling the function to spam the string infinitely
spam_e_string_infinite()