Horje
"%(class)s" in django Code Example
"%(class)s" in django
notas = []
for indice in range(1,6):
	while True:
		nota = int(input("Introduce la nota %d:" % indice))
		if nota>=0 and nota<=10: break
	notas.append(nota)

# Muestro resultados

print("Notas: ",end="")
for nota in notas:
	print(nota," ",end="")
print()
print("Nota media: ",sum(notas)/len(notas))
print("Nota max: ",max(notas))
print("Nota min: ",min(notas))
"%(class)s" in django
owner = models.ForeignKey(TaskUser, related_name="%(app_label)s_%(class)s_ownership")
"%(class)s" in django
testsdf
"%(class)s" in django
notas = []
for indice in range(1,6):
	while True:
		nota = int(input("Introduce la nota %d:" % indice))
		if nota>=0 and nota<=10: break
	notas.append(nota)

# Muestro resultados

print("Notas: ",end="")
for nota in notas:
	print(nota," ",end="")
print()
print("Nota media: ",sum(notas)/len(notas))
print("Nota max: ",max(notas))
print("Nota min: ",min(notas))




Java

Related
java get end of date Code Example java get end of date Code Example
java secureRandom certain range Code Example java secureRandom certain range Code Example
how to convert date to dd-mon-yyyy format in java Code Example how to convert date to dd-mon-yyyy format in java Code Example
get the max value from arrayList java and save it in int Code Example get the max value from arrayList java and save it in int Code Example
java optional to collection Code Example java optional to collection Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11