DEV Community

Discussion on: Welcome Thread - v185

Collapse
 
anandchauhan21 profile image
anand chauhan

Try copy and Past...😝😝😝

def greeting(n):
    if n == 0:
        print("HELLO WORLD")
    else:
        print("HOW ARE YOU")

i, n = 1, 0
while i > 0:
    greeting(n)
    if n == 0:
        n = 1
    else:
        n = 0
Enter fullscreen mode Exit fullscreen mode