if name == 'main':
app = QApplication(sys.argv)
QApplication.setApplicationName('Helical Browser')
window = MainWindow()
app.exec_()
we can write these main lines of the code inside the main function
if name = 'main'
for faster execution of our code..