100% de satisfacción garantizada Inmediatamente disponible después del pago Tanto en línea como en PDF No estas atado a nada
logo-home
INF1511 Unit 3 Jupyter Notebook Answers 2,71 €   Añadir al carrito

Otro

INF1511 Unit 3 Jupyter Notebook Answers

 29 vistas  0 veces vendidas
  • Grado
  • Institución

The answers to the exercises in the Jupyter Notebook for unit 3 (FOR/WHILE/LOOPING).

Vista previa 1 fuera de 2  páginas

  • 15 de mayo de 2022
  • 2
  • 2022/2023
  • Otro
  • Desconocido
avatar-seller
INF1511 Unit 3 Jupyter Notebook
Answers
If you need help or have any questions please email: learning.materials.docs@gmail.com




1.Write a program to print the even numbers from a start number to an end
number.

#this code prints the even numbers from start number to an end number
for icount in range (0,13,2):
print(icount)

2.Write a program to print the odd numbers from a start number to an end
number as input from the user.

start_number=int(input('Please provide a number : '))
end_number=int(input('Please provide a number : '))
for icount in range(start_number,end_number,):

#condition for printing odd numbers only from the range
if icount % 2 != 0:

#number % 2==0 is a valid boolean expression that checks whether number %2
is equivalent to 0
#for even numbers the result is the value True
#for odd numbers its the opposite: %2 !=0

print(icount)

3.Write a program that uses a FOR loop. The program must prompt the digits
of your ID number. The program must output each digit as well as the sum
of the digits.

#this code prompts your ID number and sum of the digits
idnumber=int(input('Please provide your ID number : '))
#inputs the id number

print(idnumber)
#outputs the digits of id number

print(sum(int(digit) for digit in str(idnumber)))
#outputs the sum of the id number digits

4.Write a program that requests numbers as input from the user. Add these
numbers. The WHILE loop must terminiate once the sum exceeds a
SecretNumber variable value. Please make provision to avoid an infinte
loop!

Los beneficios de comprar resúmenes en Stuvia estan en línea:

Garantiza la calidad de los comentarios

Garantiza la calidad de los comentarios

Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!

Compra fácil y rápido

Compra fácil y rápido

Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.

Enfócate en lo más importante

Enfócate en lo más importante

Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable. Así llegas a la conclusión rapidamente!

Preguntas frecuentes

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

100% de satisfacción garantizada: ¿Cómo funciona?

Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.

Who am I buying this summary from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller elri1. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy this summary for 2,71 €. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

45,681 summaries were sold in the last 30 days

Founded in 2010, the go-to place to buy summaries for 14 years now

Empieza a vender
2,71 €
  • (0)
  Añadir