27 lines
568 B
Python
27 lines
568 B
Python
""" Primeros ejercicios """
|
|
|
|
print("Hola mundo")
|
|
|
|
print(100 + 50)
|
|
|
|
print("\nHOLA" + " " + 'MUNDO')
|
|
|
|
print("\nMe llamo \"Manuel\"")
|
|
|
|
print("Primera linea\nSegunda linea")
|
|
|
|
print("\ttabulemos")
|
|
|
|
print("This isn't a number")
|
|
print('This isn\'t a number')
|
|
print("Este signo \"\\\" es una barra invertida")
|
|
|
|
print("\n\nHola ")
|
|
print("Tu nombre es " + input("Introduce tu nombre: ")
|
|
+ " y tu apellido es "
|
|
+ input("Introduce tu apellido: "))
|
|
|
|
print(input("¿Qué estás estudiando? "))
|
|
|
|
print(input("Escribe tu nombre: ") + " " + input("Escribe tu apellido: "))
|