File size: 418 Bytes
f99fb1f
e33b9e0
3d539ea
e33b9e0
 
f99fb1f
3d539ea
 
e33b9e0
3d539ea
e33b9e0
 
f99fb1f
 
 
3d539ea
f99fb1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import gradio as gr
import random as r
def add2List(num,start,end):
    aList = []
    bList = []
    num = int(num)
    start = int(start)
    end = int(end)
    for i in range(num):
        rand=r.randint(start,end)
        aList.append(rand)
        bList.append(rand)
    bList.sort()
    return aList, bList

iface = gr.Interface(fn=add2List, inputs=["text","text","text"], outputs=["text","text"])
iface.launch()