`import sys
from PyQt5 import QtWidgets
class Window(QtWidgets.QWidget):
def __init__(self):
super().__init__()
self.init_ui()
def init_ui(self):
self.tas=QtWidgets.QPushButton("Taş")
self.kagit=QtWidgets.QPushButton("Kağıt")
self.makas=QtWidgets.QPushButton("Makas")
self.kullanici=0
self.sistem=0
self.skor=QtWidgets.QLabel("{}-{}".format(self.kullanici,self.sistem))
h_box=QtWidgets.QHBoxLayout()
h_box.addStretch()
h_box.addWidget(self.tas)
h_box.addWidget(self.kagit)
h_box.addWidget(self.makas)
h_box.addStretch()
v_box=QtWidgets.QVBoxLayout()
v_box.addStretch()
v_box.addLayout(h_box)
v_box.addStretch()
v_box.addWidget(self.skor)
v_box.addStretch()
self.setLayout(v_box)
self.show()
app=QtWidgets.QApplication(sys.argv)
deneme=Window()
sys.exit(app.exec())
`
kodum bu fakat benim istediğim şey butonların altına skor yazısının gelmesi.Layoutlarla başaramadım.