-
Notifications
You must be signed in to change notification settings - Fork 0
/
00_input.py
41 lines (29 loc) · 1.09 KB
/
00_input.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
print("01 - ALQUILER DE COCHES\n")
"""
Escribe un programa que poda al usuario qué tipo de coche les gustaría alquilar
e imprime un mensaje como 'Let me see if I can find you a Subaru.'
"""
car_type = input("Enter the car you want: ")
print(f"Let me see if I can find you a {car_type}.")
print("\n\n02 - MESA EN UN RESTAURANTE\n")
"""
Pide al usuario cuántas personas van a asistir a la cena de grupo. Si la
respuesta es más de 8, escribe un mensaje que diga que deberán esperar para una
mesa. De lo contrario, imprime que disponen de una ya.
"""
people_number = input("Enter how may people are having the dinner: ")
people_number = int(people_number)
if people_number > 8:
print("You will have to wait until the table is ready.")
else:
print("Your table is ready for dinner.")
print("\n\n03 - MÚLTIPLO DE 10\n")
"""
pide un número al usuario y escribe si ese número es múltiplo de 10 o no
"""
number = input("Enter a number: ")
number = int(number)
if number % 10 == 0:
print(f"The number {number} is a multiple of 10!")
else:
print(f"The number {number} is not a multiple of 10...")