I am making an app with the code from This Stackoverflow page:
import sys
from PyQt5 import QtWidgets,QtGui,QtCore
from PyQt5.QtWebEngineWidgets import *
app=QtWidgets.QApplication(sys.argv)
w=QWebEngineView()
w.load(QtCore.QUrl('https://google.com')) ## load google on startup
w.showMaximized()
app.exec_()
However,the result look like this
Where there is a title "pythonw"
However,I want to change it to "My App",how can I?