'Why does this program not send information to terminal?

I have this pretty basic python program but for some reason it is not working as needed

while True : print(Buy Now)

this should continue sending hello world to me terminal but is not

help please i am new coder.



Solution 1:[1]

You need to write like followings. Because statements in the print needs double or single quote.

while True : 
    print("Buy Now")

or

while True : 
    print('Buy Now')

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 herdogan