You can download this code by clicking the button below.
This code is now available for download.
Generates a random integer between two numbers.
Technology Stack : random
Code Type : Function
Code Difficulty : Intermediate
import os
import re
import json
import sys
import time
import math
import random
def get_random_number_between_two_numbers(min_num, max_num):
return random.randint(min_num, max_num)