Ibuprofeno.py💊| #170: Explica este código Python

Explica este código Python

Dificultad: Fácil

for k in range(3, 9, 2):
print(k, end=’ ‘)

A. 5 6 7

B. 3 5 7

C. 3 6 9

D. Error

Respuesta:
👉 B. 3 5 7

El método range() de Python acepta 3 parametros: …


This content originally appeared on DEV Community and was authored by Cristian Fernando

Explica este código Python

Dificultad: Fácil

for k in range(3, 9, 2):
    print(k, end=' ')
  • A. 5 6 7
  • B. 3 5 7
  • C. 3 6 9
  • D. Error

Respuesta:

👉 B. 3 5 7

El método range() de Python acepta 3 parametros: inicio, fin y salto; donde marcamos desde y hasta donde se ejevutará el bucle y el salto de cuento en cuanto "brincará" el bucle.

En nuestro caso el ciclo iniciará en 3, terminará en 8 y saltará de 3 en 3 posiciones. La salida será 3 5 7.


This content originally appeared on DEV Community and was authored by Cristian Fernando


Print Share Comment Cite Upload Translate Updates
APA

Cristian Fernando | Sciencx (2024-08-24T11:00:00+00:00) Ibuprofeno.py💊| #170: Explica este código Python. Retrieved from https://www.scien.cx/2024/08/24/ibuprofeno-py%f0%9f%92%8a-170-explica-este-codigo-python/

MLA
" » Ibuprofeno.py💊| #170: Explica este código Python." Cristian Fernando | Sciencx - Saturday August 24, 2024, https://www.scien.cx/2024/08/24/ibuprofeno-py%f0%9f%92%8a-170-explica-este-codigo-python/
HARVARD
Cristian Fernando | Sciencx Saturday August 24, 2024 » Ibuprofeno.py💊| #170: Explica este código Python., viewed ,<https://www.scien.cx/2024/08/24/ibuprofeno-py%f0%9f%92%8a-170-explica-este-codigo-python/>
VANCOUVER
Cristian Fernando | Sciencx - » Ibuprofeno.py💊| #170: Explica este código Python. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/08/24/ibuprofeno-py%f0%9f%92%8a-170-explica-este-codigo-python/
CHICAGO
" » Ibuprofeno.py💊| #170: Explica este código Python." Cristian Fernando | Sciencx - Accessed . https://www.scien.cx/2024/08/24/ibuprofeno-py%f0%9f%92%8a-170-explica-este-codigo-python/
IEEE
" » Ibuprofeno.py💊| #170: Explica este código Python." Cristian Fernando | Sciencx [Online]. Available: https://www.scien.cx/2024/08/24/ibuprofeno-py%f0%9f%92%8a-170-explica-este-codigo-python/. [Accessed: ]
rf:citation
» Ibuprofeno.py💊| #170: Explica este código Python | Cristian Fernando | Sciencx | https://www.scien.cx/2024/08/24/ibuprofeno-py%f0%9f%92%8a-170-explica-este-codigo-python/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.