سلام دوستان<br>در Qt یه combobox ایجاد کردم که ایتم های اونو دستی وارد کردم حالا میخام اون ایتم ها رو از یه سایت بخونم و تو کمبوباکس هنگام اجرا پر بشه مثل لیست تیم های لیگ بیاد داخل کمبو یا مثلا تعداد زبان های دنیا از سایت گوگل ترنسلیتور<br>ممنون میشم اگر کسی هست راهنمایی کنه<br>راه حل دستش به این صورته<br><div style="direction: ltr; ">def comboitemUi(self, MainWindow):</div><div style="direction: ltr;">&nbsp; &nbsp; &nbsp; &nbsp; _translate = QtCore.QCoreApplication.translate</div><div style="direction: ltr;">&nbsp; &nbsp; &nbsp; &nbsp; MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))</div><div style="direction: ltr;">&nbsp; &nbsp; &nbsp; &nbsp; self.label.setText(_translate("MainWindow", "Input Text:"))</div><div style="direction: ltr;">&nbsp; &nbsp; &nbsp; &nbsp; self.comboBox.setItemText(0, _translate("MainWindow", "Item1"))</div><div style="direction: ltr;">&nbsp; &nbsp; &nbsp; &nbsp; self.comboBox.setItemText(1, _translate("MainWindow", "Item2"))</div><div style="direction: ltr; ">&nbsp; &nbsp; &nbsp; &nbsp; self.comboBox.setItemText(2, _translate("MainWindow", "Item3"))</div>