sonobit commited on
Commit
0520fcc
·
1 Parent(s): 7885619

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -4,6 +4,12 @@ import random as rd
4
  def add2List(num,startRand,endRand):
5
  aList = []
6
  bList = []
 
 
 
 
 
 
7
  num = int(num)
8
  startRand = int(startRand)
9
  endRand = int(endRand)
 
4
  def add2List(num,startRand,endRand):
5
  aList = []
6
  bList = []
7
+ if num =="":
8
+ num=10
9
+ if startRand=="":
10
+ startRand=1
11
+ if endRand=="":
12
+ endRand=100
13
  num = int(num)
14
  startRand = int(startRand)
15
  endRand = int(endRand)