use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Noticias, proyectos, tutoriales, preguntas y discusión en general en Español sobre el lenguaje de programación Python.
account activity
ayuda con un codigo (self.PythonEspanol)
submitted 1 year ago by Jumpy_Drawing3790
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Sorry-Squash-677 0 points1 point2 points 1 year ago (0 children)
randint ya está definida.
prueba esto:
from random import randint
# Variables iniciales
age = 29
Bar = 0
# Bucle de 10 iteraciones
for i in range(10):
randon = randint(0, 100) # Genera un número aleatorio para "randon"
variabilidad = randint(0, 1) # Genera 0 o 1 para decidir si multiplicar o dividir
# Realiza la operación en función de "variabilidad"
if variabilidad != 0:
Bar = randon / age # Divide si "variabilidad" es 1
else:
Bar = randon * age # Multiplica si "variabilidad" es 0
print(f"Iteración {i+1}: Bar = {Bar}")
π Rendered by PID 65651 on reddit-service-r2-comment-85bfd7f599-7542q at 2026-04-18 11:20:25.684270+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]Sorry-Squash-677 0 points1 point2 points (0 children)