간단한 다마고치 / 기가 애완 동물 만들기!
Tamagotchi와 Giga Pets는 작은 가상 애완 동물을 시뮬레이션 한 소형 전자 장치였습니다. 이 애완 동물에는 건강, 굶주림 등과 같은 몇 가지 통계가있었습니다. 최근에이 예제를 썼습니다. import msvcrt,os,sys;d=m=100;h=s=t=p=0;f=10 while 1: os.system('cls'if os.name=='nt'else'clear');print("health:",d,"\nhunger:",h,"\nsleep:",s,"\nfood:",f,"\npotions:",p,"\nmoney:",m);t+=1 if msvcrt.kbhit(): k=ord(msvcrt.getch()) if k==102 and h>8 and f:f-=1;h-=9 if k==115:s=0 if k==112 and p:p-=1;d+=9 if k==98 and m>8:m-=9;p+=1 …