I'm Electronic Engineer :)

I'm happy 본문

공지사항

I'm happy

Lu175 2019. 8. 19. 08:09

# Python


def Happy () :
    global happiness 
    happiness += 1 
    print("I'm Happy ", end="") 
    return happiness 
 
happiness = 0 
while(True) : 
    Happy() print(happiness, "%")