from threading import Thread

def suban():
	print('suban is a potato')
	
Thread(target=suban).start()