Hi everyone, i am stuck with Threads in python.
Can someone help me?

Code:
def Kub(x):
    a=x*x*x
    return a

print("Unesite broj veci od 10 i manji od 150000")
i=0
x=int(input())
while i!=x:
    if x>10 and x<150000:
        i=x
        print(i)
    else:
        print("Unesite drug broj u dadeni interval")
...