samdotslash commited on
Commit
366b954
·
verified ·
1 Parent(s): 8df61fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def get_random_integer(Start_num:int, End_num:int)-> str: #it's import to specif
22
  # Calling a rand function
23
  rand_num = random.randint( Start_num, End_num )
24
 
25
- return f"The Random Number between {Start_num} and {End_num} is: {rand_num}"
26
 
27
  except Exception as e:
28
  return f"Error fetching Random Number between {Start_num} and {End_num}:{str(e)}"
 
22
  # Calling a rand function
23
  rand_num = random.randint( Start_num, End_num )
24
 
25
+ return f"{rand_num}"
26
 
27
  except Exception as e:
28
  return f"Error fetching Random Number between {Start_num} and {End_num}:{str(e)}"