สอนเขียน Python random ตัวเลข 1 - 10 ด้วยคำสั่ง randint สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python random ตัวเลข 1 - 10
import random
r = random.randint(1, 10)
print( "random number = "+str(r) )
ผลลัพธ์
random number = 2
โค้ดด้าน random ตัวเลข 1 - 10 ด้วยคำสั่ง randint โดยคำสั่งนี้จะต้อง import random ก่อนใช้งาน