If a while loop's condition stays True forever, we call it an infinite loop since it will loop infinitely, like with print() here.
while
True
print()
Make sure to pick print followed by ( and then "and again", ).
print
(
"and again"
)