One way to really annoy someone with a virus is by creating an infinite loop.

In Python, we can create an infinite loop with while True:. Meaning the code will execute while True is True.

Nice job! This infinite loop won't stop printing This will never end..

Make sure to start with while, then add True, and finish with a colon (:).