Development

How To Make a Calculator Program in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Make a Calculator Program in Python 3

In this tutorial, we’ll go through how to make a simple command-line calculator program in Python 3. We’ll be using math operators, variables, conditional statements, functions, and take in user input to make our calculator.

Read more
Определение методов в Go — step-by-step Programming tutorial on Progressive Robot

Определение методов в Go

Функции позволяют организовывать логику в повторяющихся процедурах, которые могут использовать различные аргументы при каждом запуске. В ходе определения функций вы часто можете обнаружить,…

Read more
Как создавать циклы For в Go — step-by-step Programming tutorial on Progressive Robot

Как создавать циклы For в Go

В компьютерном программировании циклом называется структура кода, представляющая собой петлю, которая повторяет выполнение куска кода, пока не будет выполнено определенное условие. Использование циклов в компьютерном программировании позволяет автоматизировать и повторять…

Read more
Entendendo classes no JavaScript — step-by-step Javascript tutorial on Progressive Robot

Entendendo classes no JavaScript

O JavaScript é uma linguagem baseada em protótipo, e cada objeto no JavaScript tem uma propriedade interna escondida chamada [[Prototype]], que pode ser usada para estender as propriedades e métodos de objetos. Você pode ler mais sobre protótipos no nosso tutorial [Entendendo…

Read more
Cómo escribir instrucciones condicionales en Go — step-by-step Programming tutorial on Progressive Robot

Cómo escribir instrucciones condicionales en Go

Las instrucciones condicionales son parte de cada lenguaje de programación. Con las instrucciones condicionales, podemos disponer de código que a veces se ejecuta y que en otros momentos no lo hace, según las condiciones del programa en ese momento. Cuando ejecutamos por…

Read more
How To Use Relationships to Select HTML Elements with CSS — step-by-step DevOps tutorial on Progressive Robot

How To Use Relationships to Select HTML Elements with CSS

In CSS, it is possible to select an element based on its relationship or proximity to another element. In this tutorial, you will use several CSS-relationship-based approaches to select and style elements on an HTML page. You will use the descendant combinator, child combinator, general sibling combinator, and adjacent sibling combinator, as well as the first-, last-, only-, and nth-child pseudo-class selectors.

Read more
Знакомство с объектами map и set в JavaScript — step-by-step Javascript tutorial on Progressive Robot

Знакомство с объектами map и set в JavaScript

Автор выбрал фонд Open Internet/Free Speech для получения пожертвования в рамках программы Write for DOnations. В JavaScript разработчики часто тратят много времени на решение того, какую структуру данных…

Read more
CHAT