6.4.. Ispisati generisani četverocifren slučajan broj. Zatim ispisati proizvod prve dvije cifre.

Listing programa:

# 06421148
print("proizvod prve dvije cifre generisanog cetverocifrenog broja")

import random
a=random.randint(1000, 9999)
print("generisani broj = ", a)
x = int(a/1000)
y = int((a - x * 1000)/100)

p = x * y
print( x, " *  " , y , " = ", p)

II Varijanta
# 06421148
import random
x = random.randint(1000,9999)
print(x)
a = int(x / 1000)	# hiljadice
z = x - a * 1000	# trocifren broj
b = int(z / 100)	# stotice
c = a * b
print(c)

Ispis na ekranu:
proizvod prve dvije cifre generisanog cetverocifrenog broja
generisani broj =  2953
2  *   9  =  18

Ispis na ekranu:

Index