random.random code example
Example 1: python random
# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
Example 2: python random
# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
# random generates a random real number in the interval [0, 1)
print(random.random())
Example 3: python random number
from random import randint
radnom_number = randint(1, 10) # generate random number from 1 to 10. including 10
print(radnom_number)
# Possible outputs
# 1
# 2
# 3
# 4
# 5
# 6
# 7
# 8
# 9
# 10
Example 4: random.randint
import random
print(random.randint(3, 9))
Example 5: random.uniform python
#In contrast to randInt .random.uniform generates a floating number between two variables
# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
Example 6: random.random in python
enota = input("V kateri enoti boš podal temperaturo? Vnesi 'C' ali 'F': ")
stopinje = int(input("Število stopinj: "))
if enota != "C" and enota != "F":
print("Vnesi ustrezno enoto.")
else:
if enota == "C":
odg = int(round((9 * stopinje) / 5 + 32))
nova_enota = "Fahrenheit"
elif enota == "F":
odg = int(round((stopinje - 32) * 5 / 9))
nova_enota = "Celzija"
print("Temperatura v stopinjah", nova_enota, "je", odg, "stopinj.")