File size: 413 Bytes
5203bf2
ae65a7f
 
 
 
 
 
 
 
 
 
 
 
 
5203bf2
ae65a7f
5203bf2
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(1,99)
        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()