File size: 416 Bytes
8318216
e19bcf7
f3d6a67
e19bcf7
 
8318216
f3d6a67
 
e19bcf7
f3d6a67
e19bcf7
 
8318216
 
 
f3d6a67
8318216
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()