https://github.com/user-attachments/assets/fc856c72-68a7-4aa7-bacf-897ebc84ef37 ## Code to reproduce ```python import time for step in range(0, 10): print(f"This is Step: {step}") time.sleep(2) ```