79078462

Date: 2024-10-11 13:42:50
Score: 1.5
Natty:
Report link

Here is 1 way.

from time import sleep

line_1 = "You have woken up in a mysterious maze"
line_2 = "The building has 5 levels"
line_3 = "Scans show that the floors increase in size as you go down"

a = [b for b in line_1]
for i in range(0, len(a)):
    print(a[i], end='')
    sleep(0.25)
print('')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Fqrest