'Visualize random numbers generate

how can I visualize the random number which is generated in python without the help of any internal or external library of python?

This is the code I am trying with

def random(x,y):
  from time import time
  r = time() - float(str(time()).split('.')[0])
  random = r*(x-y)+y
  return random
random(23,53)


Solution 1:[1]

E.g. you can use a density plot using Seaborn,feeding in an array of your created random numbers.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Of Mugs and Doughnuts