Posts by adrianewey • 11 points
3 posts
-
0
votes2
answers1038
viewsA: Python - creating table
Tables can be represented using different types of Data Structure. The simplest would be to create an array using arrays: table = [ [10,48] , [10,50] , [20,30] ] You can access the data using the…
-
1
votes1
answer20
viewsA: How to join two values of an array into one?
From what I understand, you intend to access the variable of each array and "mount" a time. const arrayHora = [10] const arrayMinuto = [53] var horario = arrayHora[0] + ":" + arrayMinuto[0]…
-
0
votes0
answers30
viewsQ: Do you need python installed to build a Docker image?
On the Docker website, examples of build with Python, Java, Go, Node.js(javascript) are given and they are indicated to have previously installed them. What do I see, I have to have the language…