204111:lab1-code
รุ่นแก้ไขเมื่อ 09:00, 15 พฤษภาคม 2553 โดย Jittat (คุย | มีส่วนร่วม) (หน้าที่ถูกสร้างด้วย 'เน้นให้พิมพ์ตามและทดลองใช้ Wing IDE == โปรแกรมแรก: เกมท…')
เน้นให้พิมพ์ตามและทดลองใช้ Wing IDE
โปรแกรมแรก: เกมทายเลข
ทายเลข ครั้งเดียว
<geshi lang="python"> from random import randint
s = randint(1,100) a = input("Guess a number (1 - 100):") if a < s:
print("Your guess is too low. The answer is",s)
if a > s:
print("Your guess is too high. The answer is",s)
if a == s:
print("You guessed correctly.")
</geshi>