6.4.. Ispisati generisani trocifren slučajan broj. Zatim ispisati količnik druge i prve cifre s lijeva.

Listing programa:

# 06421150
import random
a=random.randint(100, 999)
print(a)
s = a // 100           # cifra stotica
d = (a % 100) // 10    # cifra desetica
a=a//10
# k = 1.0
k = d / s              # kolicnik desetice i stotice trocifrenog broja
print(k)

Ispis na ekranu:

Index