I'm Electronic Engineer :)
I'm happy 본문
# Python
def Happy () :
global happiness
happiness += 1
print("I'm Happy ", end="")
return happiness
happiness = 0
while(True) :
Happy() print(happiness, "%")
# Python