If I have a class that got threading.Thread I run the new thread with .start()
class hello(threading.Thread):
def run():
print "hi"
print "bye"
So this is a thread but when I want 2 threaded functions inside a single class? How do I do that?
Because when you use .start() It uses the run function in a new thread.