Skip to content
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
113a9f8
Merge pull request #1 from MathMachado/master
mfoliv Oct 2, 2020
d98b481
Criado usando o Colaboratory
mfoliv Oct 2, 2020
336e824
Criado usando o Colaboratory
mfoliv Oct 3, 2020
e5cd989
Merge pull request #2 from MathMachado/master
mfoliv Oct 5, 2020
d7b2e99
Merge pull request #3 from MathMachado/master
mfoliv Oct 6, 2020
ef8fb61
Merge pull request #4 from MathMachado/master
mfoliv Oct 7, 2020
a5a07d0
Merge pull request #5 from MathMachado/master
mfoliv Oct 8, 2020
2e2d74c
Merge pull request #6 from MathMachado/master
mfoliv Oct 9, 2020
c936ac9
Merge pull request #7 from MathMachado/master
mfoliv Oct 13, 2020
e8a4e09
Merge pull request #8 from MathMachado/master
mfoliv Oct 14, 2020
3fb1126
Merge pull request #9 from MathMachado/master
mfoliv Oct 15, 2020
ad3de63
Merge pull request #10 from MathMachado/master
mfoliv Oct 16, 2020
a2acc14
Merge pull request #11 from MathMachado/master
mfoliv Oct 16, 2020
0bf7ab5
Merge pull request #12 from MathMachado/master
mfoliv Oct 19, 2020
a67076d
Merge pull request #13 from MathMachado/master
mfoliv Oct 20, 2020
ca09274
Merge pull request #14 from MathMachado/master
mfoliv Oct 21, 2020
4b99fab
Merge pull request #15 from MathMachado/master
mfoliv Oct 22, 2020
1af13b2
Merge pull request #16 from MathMachado/master
mfoliv Oct 26, 2020
11d2ca5
Merge pull request #17 from MathMachado/master
mfoliv Oct 26, 2020
f9435dd
Merge pull request #18 from MathMachado/master
mfoliv Oct 29, 2020
d07c367
Merge pull request #19 from MathMachado/master
mfoliv Nov 16, 2020
e5b2518
Merge pull request #20 from MathMachado/master
mfoliv Dec 8, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Notebooks/NB01_05__Datas_Horas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/github/MathMachado/DSWP/blob/master/Notebooks/NB01_05__Datas_Horas.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
"<a href=\"https://colab.research.google.com/github/mfoliv/DSWP/blob/master/Notebooks/NB01_05__Datas_Horas.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
Expand Down Expand Up @@ -87,7 +87,7 @@
"| 5 | tm_sec | Segundos, de 0 a 61 |\n",
"| 6 | tm_wday | Dia da semana, de 0 a 6, onde 0 = Segunda |\n",
"| 7 | tm_yday | Dia do ano, de 1 a 366 |\n",
"| 8 | tm_isdt | Valores possíveis: -1, 0, 1 |\n",
"| 8 | tm_isdst | Valores possíveis: -1, 0, 1 |\n",
"\n",
"\n",
"\n"
Expand Down Expand Up @@ -180,13 +180,13 @@
"id": "DhKDiZyYUfP5"
},
"source": [
"print(\"Ano..........:\", hora_local[0])\n",
"print(\"Mes..........:\", hora_local[1])\n",
"print(\"Dia..........:\", hora_local[2])\n",
"print(\"Hora.........:\", hora_local[3])\n",
"print(\"Minutos......:\", hora_local[4])\n",
"print(\"Segundos.....:\", hora_local[5])\n",
"print(\"Dia da Semana:\", hora_local[6])"
"print(\"Ano.............:\", hora_local[0])\n",
"print(\"Mes.............:\", hora_local[1])\n",
"print(\"Dia.............:\", hora_local[2])\n",
"print(\"Hora............:\", hora_local[3])\n",
"print(\"Minutos.........:\", hora_local[4])\n",
"print(\"Segundos........:\", hora_local[5])\n",
"print(\"Dia da Semana:..:\", hora_local[6])"
],
"execution_count": null,
"outputs": []
Expand Down