Posts by Réulison Silva • 96 points
4 posts
-
2
votes1
answer159
viewsA: Python - Pyqt5 - how to insert a Qgridlayout into a Qmainwindow?
Set the layout in a simple Qwidget and set it as a central widget of the main window. QWidget* widget = new QWidget(mainWindow); widget->setLayout(gridLayout);…
pythonanswered Réulison Silva 96 -
0
votes3
answers1806
viewsQ: Add the first "n" elements of a Python geometric progression
A program to add up the first "n" elements of a progression geometric, given the first element "A0" and the ratio "r" between the elements. For example, for n = 7, A0 = 1, r = 3: 1 + 3 + 9 + 27 + 81…
pythonasked Réulison Silva 96 -
4
votes3
answers2737
viewsA: How to integrate microservices?
Migrate to a microservice architecture may not be such a simple task and therefore requires a lot of planning and clear motivations. Normally this migration occurs when we have a large monolithic…
-
0
votes3
answers243
viewsA: Python "list out of the range"
In Python, a list is represented as a sequence of comma-separated objects and within square brackets [], so an empty list, for example, can be represented by square brackets with no content. List 1…
pythonanswered Réulison Silva 96