I am trying to create a function that generates a random number between 0 and 100 using random, I wrote this code but I only get numbers betweem 0 and 1 what can I do to fix this
import random
def randint (min= 0, max = 100):
    num = random.random()
    return num
randint()
 
     
     
    