python how to use random code example

Example 1: random number python

# generate random integer values
from random import randint

value = randint(0, 10)
print(value)

Example 2: python random number

from random import randint

print(randint(1,3))

#Possible Outputs#
#1
#2
#3

Example 3: random python code

# Here is a literal random python code:
numbers = []

def while_loop(i, x, y):
    
    while i < x:
        print(f"At the top i is {i}")
        numbers.append(i)

        i = i + y
        print("Numbers now: ", numbers)
        print(f"At the bottom i is {i}")
    
    print("The numbers: ")

    for num in numbers:
        print(num)

while_loop(0, 6, 1) 
# The last number is an incrementor, which specifies how much the variable "i" goes up by.

Example 4: import random in python

# Assessment Task 7.2.1
def DisplayOddNum(N):
  pass

for x in DisplayOddNum(20)
  print(x)

Example 5: 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.")