Alright so im wanting to create a pyqt gui that has little consoles inside the program that things can be printed to. let me explain further more. so if you would run a program without any gui interface like this
import os
name = raw_input("What is your name? ")
print "Hello " + str(name) = "How are you?"
os.system('pause')
everything would run inside of the cmd. i am wanting to make a pyqt gui that is basicly the cmd but i would like to add other buttons around the embedded console if someone could teach me how to make this that would be amazing. thank you so much in advance!