Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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"
|
| 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)}"
|