create account

Serie Fibonnaci y avances en el curso [ESP-ENG] | Python by gabrielr29

View this thread on: hive.blogpeakd.comecency.com
· @gabrielr29 · (edited)
$1.54
Serie Fibonnaci y avances en el curso [ESP-ENG] | Python
<div class="pull-left">
<div class="text-justify"> 

¿Qué tal? De nuevo vuelvo luego de un buen rato inactivo por acá, como siempre me gusta guardar las publicaciones sobre programación, reparaciones o proyectos que me toman más tiempo para esta cuenta que considero un poco más especial. En @gabrielrr17 he estado activo con retos y cositas de Splinterlands como batallas y aperturas de cofres de temporada.

Para esta ocasión he venido para compartir un poco sobre mi progreso en la materia "Lenguajes de programación" en la universidad y sobre el curso de Python que mencioné antes. Este curso lo empecé hace [ya un mes más o menos](https://peakd.com/hive-154226/@gabrielr29/primeros-pasos-con-mi-segundo-curso-de-azulschool-esp-eng-l-or-python), pero voy a pasos cortos por causa de todas mis responsabilidades.

Para mi fortuna, esta materia, "Lenguajes de programación", el profesor ha decidido comenzarla con Python, pues considera que es un lenguaje con bastante uso en la actualidad, aunque menciono que abarcaríamos otros.

Anteriormente ya hice una publicación sobre un programa de la serie Fibonacci, sin embargo, en esa ocasión [estaba escrito en lenguaje C++](https://peakd.com/hive-154226/@gabrielr29/serie-fibonacci-or-c). Este ejercicio es un clásico de clásicos, a tal punto que el profesor cuenta que cuando él estudiaba, con lenguaje Pascal, le tocó hacer un ejercicio enfocado en esta misma serie.

Si bien ChatGPT puede dar una respuesta en segundos de cómo hacer este ejercicio, lo cierto es que entorpece el proceso de aprendizaje el usar trucos como ese. Considero que la IA puede ser de gran ayuda pero abusar trae consecuencias.


</div>
</div>

<div class="pull-right"> 
<div class="text-justify"> 

What's up? I'm back again after a while of inactivity here, as always I like to save posts about programming, repairs or projects that take me more time for this account that I consider a little more special. In @gabrielrr7 I have been active with challenges and Splinterlands stuff like battles and season chests openings.

For this occasion I've come to share a bit about my progress in the subject "Programming Languages" at university and about the Python course I mentioned before. I started this course [already a month or so ago](https://peakd.com/hive-154226/@gabrielr29/first-steps-with-my-second-course-of-azulschool-esp-eng-l-or-python), but I'm taking short steps because of all my responsibilities.

Fortunately for me, this subject, "Programming Languages", the professor has decided to start it with Python, as he considers that it is a language with quite a lot of use nowadays, although I mention that we would cover others.

Previously I already made a publication about a Fibonacci series program, however, on that occasion [it was written in C++ language](https://peakd.com/hive-154226/@gabrielr29/serie-fibonacci-or-c). This exercise is a classic of classics, to such an extent that the professor tells that when he was studying, with Pascal language, he had to do an exercise focused on this same series.

While ChatGPT can give an answer in seconds on how to do this exercise, the truth is that it hinders the learning process to use tricks like that. I believe that AI can be a great help, but overuse has consequences.
</div>
</div>

---

<center>

![Portada post programacion, tech.jpg](https://files.peakd.com/file/peakd-hive/gabrielr29/23tbiC7doh7cTaGq3iY1xcumWQ31qKitjyMPaPb6m1PGxvyK8U1QH2JxE4T4fiY65a26h.jpg)
***Editado con Canva, la imagen de fondo fue creada por [Gabby la IA](https://gab.com/AI) generadora de imágenes / Edited with Canva, the background image was created by [Gabby the AI](https://gab.com/AI) image generator.***

</center>



![Programación c++.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23xoaTx8Fh7mJSiavTJgRBRbhNFWCuhd4DiA8jSiBueSPqA9x3GB2FdCrnCqkusqPjjmN.png)

<div class="pull-left">
<div class="text-justify"> 

En Python resultó ser más corto que en C++, incluso habiendo incluido el apartado del bucle que permite repetir el proceso para continuar la sucesión con 10 repeticiones más. Esto porque Python tiene varias particularidades que ayudan a reducir bastante el código necesario. Acá me tomó unas 27 líneas de código (sin usar funciones). 

Para empezar declaré la variable "val" que funciona como validador para el bucle while que empieza en la línea 211. Como dato importante, empieza en la línea 211 porque en este mismo archivo .py hago el resto de mis prácticas del curso y la universidad, por lo que tiene acumulado varios programas pequeños que me gusta tener en el mismo sitio por ahora.

Las siguientes dos variables son n1 y n2, ambas iniciadas con valor 1 pues así inicia la seria. Posteriormente las muestro en pantalla y luego con un bucle for que tiene un rango de 10 repeticiones n1 toma la suma de n1+n2 y luego n2 hace lo mismo pero con el nuevo valor de n1, de tal manera que se cumple el principio de la sucesión. Finalmente se muestran en pantalla ambo números separados por un guión.

Sigue el bucle While que tiene como parámetro que "val" sea diferente de "N" o "n" para que se siga ejecutando, esto porque el usuario ingresa Y o N para continuar o no con la ejecución de otras 10 repeticiones. Si el usuario no ingresa (Y/N) sino otro carácter por error, entonces el bucle se repite con la pregunta ("¿Desea continuar? (Y/N)), (Y=Yes), (N=No). Eso es en resumen el funcionamiento del código.

</div>
</div>

<div class="pull-right"> 
<div class="text-justify"> 

In Python it turned out to be shorter than in C++, even having included the loop section that allows repeating the process to continue the succession with 10 more repetitions. This is because Python has several peculiarities that help to reduce quite a lot the necessary code. Here it took me about 27 lines of code (without using functions).

To start I declared the variable "val" that works as a validator for the while loop that starts at line 211. As an important fact, it starts at line 211 because in this same .py file I do the rest of my course and university practices, so it has accumulated several small programs that I like to have in the same place for now.

The following two variables are n1 and n2, both initialized with value 1 because this is how the series starts. Later I show them on screen and then with a for loop that has a range of 10 repetitions n1 takes the sum of n1+n2 and then n2 does the same but with the new value of n1, in such a way that the principle of the succession is fulfilled. Finally, both numbers are displayed on the screen separated by a hyphen.

It follows the While loop that has as parameter that "val" is different from "N" or "n" to continue executing, this because the user enters Y or N to continue or not with the execution of another 10 repetitions. If the user does not enter (Y/N) but another character by mistake, then the loop repeats with the question ("Do you want to continue? (Y/N)), (Y=Yes), (N=No). That is in summary how the code works.

</div>
</div>

![Programación c++.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23xoaTx8Fh7mJSiavTJgRBRbhNFWCuhd4DiA8jSiBueSPqA9x3GB2FdCrnCqkusqPjjmN.png)


![image.png](https://files.peakd.com/file/peakd-hive/gabrielr29/Eo1vVTpED8TZFsoGHj9f2qhHm2TS2mAzaXL5dFUswScu4VB8Lf3xhYUAV5WJqdDRCBJ.png)



![Programación c++.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23xoaTx8Fh7mJSiavTJgRBRbhNFWCuhd4DiA8jSiBueSPqA9x3GB2FdCrnCqkusqPjjmN.png)


<div class="pull-left">
<div class="text-justify"> 

Respecto al curso, llevo un 48%, actualmente voy por la lección de módulos, aunque en clase aun no hemos empezado con funciones, así que llevo algo de ventaja en ese sentido. Los exámenes han estado retadores, a mi parecer bastante al nivel de todo lo que se entrega. Hubo un detalle que vi mejorable y lo comente por la encuesta sobre el curso, este detalle lo comenté en la publicación anterior sobre este tema.

</div>
</div>

<div class="pull-right"> 
<div class="text-justify"> 

I am 48% of the way through the course, I am currently going through the module lesson, although in class we have not yet started with functions, so I am a bit ahead in that sense. The exams have been challenging, in my opinion quite at the level of everything that is delivered. There was one detail that I saw that could be improved and I commented it in the survey about the course, this detail I commented it in the previous publication on this topic.

</div>
</div>


![Programación c++.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23xoaTx8Fh7mJSiavTJgRBRbhNFWCuhd4DiA8jSiBueSPqA9x3GB2FdCrnCqkusqPjjmN.png)


![image.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23t8D1dmtjEGCTFEQNTEyfKkQdkgeSQWjHJFimimr9Z6GgcQptJF6rKZmd7GPPP8F7mUy.png)


![Programación c++.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23xoaTx8Fh7mJSiavTJgRBRbhNFWCuhd4DiA8jSiBueSPqA9x3GB2FdCrnCqkusqPjjmN.png)


![image.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23tGTE5UVP5g7Pq56WkpyYnraih7xNzVnfqV6BkJdGeBKg9r4zdZuEnFAAjfJJpQaAKST.png)


![image.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23tRtCtziiyDqePkiZEogemirSdZUawg6KFeWB81WZ6TZnsNzKmq4fQRXejJYWxSaU19y.png)


![Programación c++.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23xoaTx8Fh7mJSiavTJgRBRbhNFWCuhd4DiA8jSiBueSPqA9x3GB2FdCrnCqkusqPjjmN.png)


<div class="pull-left">
<div class="text-justify"> 

¡Y bueno... Eso es todo por hoy! Pronto estaré comentando más sobre mis avances. En lo personal te recomiendo mucho entrar también en este curso, doy fe de que es de muy buen calidad y vale cada centavo. [Si quieres ingresar, clica aquí.](https://www.azulschool.net/courses/curso-profesional-de-python/?pa=4EAA764EBA)


</div>
</div>

<div class="pull-right"> 
<div class="text-justify"> 

And well... That's all for today! Soon I will be commenting more about my progress. Personally I highly recommend you to join this course as well, I can attest that it is of very good quality and worth every penny [If you want to join, click here](https://www.azulschool.net/courses/curso-profesional-de-python/?pa=4EAA764EBA).

</div>
</div>


![Programación c++.png](https://files.peakd.com/file/peakd-hive/gabrielr29/23xoaTx8Fh7mJSiavTJgRBRbhNFWCuhd4DiA8jSiBueSPqA9x3GB2FdCrnCqkusqPjjmN.png)

---

<center><p>

![Redes actualizada.gif](https://files.peakd.com/file/peakd-hive/gabrielr29/23u5ztBa5Nd8VLvvWaYoqJTa4yaQxuHhKgsj7uDzmDKcbkqaPqR3d5PQuWzxkxSvYRdyN.gif)

</p></center>

---



<center> <h3> Puedes seguirme por acá si lo deseas: 
 *You can follow me here if you want:*</h3></center>


<div class="pull-left"><p>
 <h6>  <a href="https://gab.com/gabrielrr018/"><strong>Gab.com</strong></a> </h6> </p></div>


<div class="pull-right"> <p>
<h6><a href="twitter.com/Gabrielrr018"><strong>Twitter</strong></a></h6></p></div>

<center><p><h6><a href="https://peakd.com/@gabrielrr17"><strong>Cuenta secundaria 
(Dibujos, edición y juegos) | Secondary account (Drawings, editing and games)</strong></a> </h6> </p></center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 50 others
properties (23)
authorgabrielr29
permlinkserie-fibonnaci-y-avances-en-el-curso-or-python
categoryhive-154226
json_metadata"{"app":"peakd/2023.4.2","format":"markdown","description":"Para esta ocasión he venido para compartir un poco sobre mi progreso en la materia \"Lenguajes de programación\" y (...)","tags":["spanish","technology","developspanish","hivedevs","programador","proofofbrain","palnet","programation","tutorial","archon"],"users":["gabrielrr17","gabrielr29","gabrielrr7"],"image":["https://files.peakd.com/file/peakd-hive/gabrielr29/23tbiC7doh7cTaGq3iY1xcumWQ31qKitjyMPaPb6m1PGxvyK8U1QH2JxE4T4fiY65a26h.jpg","https://files.peakd.com/file/peakd-hive/gabrielr29/23xoaTx8Fh7mJSiavTJgRBRbhNFWCuhd4DiA8jSiBueSPqA9x3GB2FdCrnCqkusqPjjmN.png","https://files.peakd.com/file/peakd-hive/gabrielr29/Eo1vVTpED8TZFsoGHj9f2qhHm2TS2mAzaXL5dFUswScu4VB8Lf3xhYUAV5WJqdDRCBJ.png","https://files.peakd.com/file/peakd-hive/gabrielr29/23t8D1dmtjEGCTFEQNTEyfKkQdkgeSQWjHJFimimr9Z6GgcQptJF6rKZmd7GPPP8F7mUy.png","https://files.peakd.com/file/peakd-hive/gabrielr29/23tGTE5UVP5g7Pq56WkpyYnraih7xNzVnfqV6BkJdGeBKg9r4zdZuEnFAAjfJJpQaAKST.png","https://files.peakd.com/file/peakd-hive/gabrielr29/23tRtCtziiyDqePkiZEogemirSdZUawg6KFeWB81WZ6TZnsNzKmq4fQRXejJYWxSaU19y.png","https://files.peakd.com/file/peakd-hive/gabrielr29/23u5ztBa5Nd8VLvvWaYoqJTa4yaQxuHhKgsj7uDzmDKcbkqaPqR3d5PQuWzxkxSvYRdyN.gif"]}"
created2023-05-18 01:15:15
last_update2023-05-18 18:11:06
depth0
children8
last_payout2023-05-25 01:15:15
cashout_time1969-12-31 23:59:59
total_payout_value0.776 HBD
curator_payout_value0.766 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,014
author_reputation37,494,667,324,058
root_title"Serie Fibonnaci y avances en el curso [ESP-ENG] | Python"
beneficiaries
0.
accountdevelopspanish
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,565,553
net_rshares3,225,588,411,037
author_curate_reward""
vote details (114)
@hispapro ·
<center>![](https://images.ecency.com/DQmeDqvQREoRM15nDCCAv8oZMq8KV579kbkE9XB2bk9xSEp/hispapro_mensaje_curacion.png)</center>

<center><sub>HispaPro es un proyecto construido en Hive para apoyar con el marketing, la incorporación, asesorías, curaduría, acompañamiento y más, en la construcción de nuestro ecosistema.</sub></center>

<center>![](https://images.ecency.com/DQmPqdJgo7yymPEasCQpmSjRtGETJQCrgARDCW8eggXVsis/separador_1.png)</center>

<sub>Sigue, contacta y se parte del proyecto en:</sub>
<center>

|<sub><center>[Hive](https://ecency.com/@hispapro)</center></sub>|<sub><center>[Discord](https://discord.gg/tXTD3B6xvZ)</center></sub>|<sub><center>[Twitter](https://twitter.com/hispapro)</center></sub>|
-|-|-
|<sub><center>[FanBase](https://hive.vote/dash.php?fan=hispapro&i=2)</center></sub>|<sub><center>[Trail](https://hive.vote/dash.php?trail=hispapro&i=1)</center></sub>|<sub><center>Delegaciones: [10 - ](https://hivesigner.com/sign/delegateVestingShares?delegatee=hispapro&vesting_shares=10%20HP)[50 - ](https://hivesigner.com/sign/delegateVestingShares?delegatee=hispapro&vesting_shares=50%20HP)[100 - ](https://hivesigner.com/sign/delegateVestingShares?delegatee=hispapro&vesting_shares=100%20HP)[500](https://hivesigner.com/sign/delegateVestingShares?delegatee=hispapro&vesting_shares=500%20HP)</center></sub>|

</center>

***
# <center><sub><div class= "phishy">¡Gracias!</div></sub></center>
properties (22)
authorhispapro
permlinkre-gabrielr29-2023517t21271972z
categoryhive-154226
json_metadata{"tags":["spanish","technology","developspanish","hivedevs","programador","proofofbrain","palnet","programation","tutorial","archon"],"app":"ecency/3.0.31-vision","format":"markdown+html"}
created2023-05-18 01:27:03
last_update2023-05-18 01:27:03
depth1
children1
last_payout2023-05-25 01:27:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,415
author_reputation677,158,089,265,822
root_title"Serie Fibonnaci y avances en el curso [ESP-ENG] | Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,565,748
net_rshares0
@gabrielr29 ·
¡Gracias por el apoyo!
properties (22)
authorgabrielr29
permlinkre-hispapro-rutzrg
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"peakd/2023.4.2"}
created2023-05-18 01:50:21
last_update2023-05-18 01:50:21
depth2
children0
last_payout2023-05-25 01:50:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation37,494,667,324,058
root_title"Serie Fibonnaci y avances en el curso [ESP-ENG] | Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,566,139
net_rshares0
@marilour · (edited)
Hola @gabrielr29 interesante presentación, en el mundo de la programación. Es una información valiosa y de interés para los que transitan esas áreas. La presentas de manera muy organizada y con su componente instructivo. Bien hecho.
Feliz semana
!LUV
👍  , , , ,
properties (23)
authormarilour
permlinkre-gabrielr29-ruulcu
categoryhive-154226
json_metadata{"tags":"hive-154226"}
created2023-05-18 09:37:54
last_update2023-05-18 09:39:36
depth1
children2
last_payout2023-05-25 09:37:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length250
author_reputation47,239,348,994,856
root_title"Serie Fibonnaci y avances en el curso [ESP-ENG] | Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,573,697
net_rshares124,550,473
author_curate_reward""
vote details (5)
@gabrielr29 ·
Muchas gracias por su apreciación, le deseo una excelente semana también!
👍  , , , ,
properties (23)
authorgabrielr29
permlinkre-marilour-ruv953
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"peakd/2023.4.2"}
created2023-05-18 18:10:21
last_update2023-05-18 18:10:21
depth2
children0
last_payout2023-05-25 18:10:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation37,494,667,324,058
root_title"Serie Fibonnaci y avances en el curso [ESP-ENG] | Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,585,687
net_rshares124,341,012
author_curate_reward""
vote details (5)
@luvshares ·
@gabrielr29, @marilour<sub>(1/3)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-re-gabrielr29-ruulcu-20230518t093951z
categoryhive-154226
json_metadata"{"app": "beem/0.24.26"}"
created2023-05-18 09:39:51
last_update2023-05-18 09:39:51
depth2
children0
last_payout2023-05-25 09:39:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,266
author_reputation5,651,102,754,153
root_title"Serie Fibonnaci y avances en el curso [ESP-ENG] | Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,573,732
net_rshares0
@sperosamuel15 ·
Heheh...you took a rest from blogging but never from your skill.
That was a beautiful presentation bro... 
👍  
properties (23)
authorsperosamuel15
permlinkre-gabrielr29-ruw81r
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"peakd/2023.4.2"}
created2023-05-19 06:44:18
last_update2023-05-19 06:44:18
depth1
children2
last_payout2023-05-26 06:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation124,426,333,680,690
root_title"Serie Fibonnaci y avances en el curso [ESP-ENG] | Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,603,608
net_rshares0
author_curate_reward""
vote details (1)
@gabrielr29 ·
Hahahaha, thank you very much for such nice words. 
properties (22)
authorgabrielr29
permlinkre-sperosamuel15-ruzhbw
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"peakd/2023.5.1"}
created2023-05-21 00:57:36
last_update2023-05-21 00:57:36
depth2
children1
last_payout2023-05-28 00:57:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation37,494,667,324,058
root_title"Serie Fibonnaci y avances en el curso [ESP-ENG] | Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,674,476
net_rshares0
@sperosamuel15 ·
You're welcome
properties (22)
authorsperosamuel15
permlinkre-gabrielr29-rv04vc
categoryhive-154226
json_metadata{"tags":["hive-154226"],"app":"peakd/2023.5.1"}
created2023-05-21 09:26:00
last_update2023-05-21 09:26:00
depth3
children0
last_payout2023-05-28 09:26:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation124,426,333,680,690
root_title"Serie Fibonnaci y avances en el curso [ESP-ENG] | Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id123,684,966
net_rshares0