-
Notifications
You must be signed in to change notification settings - Fork 0
/
helloWorld.py
41 lines (26 loc) · 1.08 KB
/
helloWorld.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
print ("***CARACTER DE SCAPE***")
print("witsi witsi araña\nsubio su telaraña")
print()
print("vino la lluvia\ny se la llevo")
print("\n***ARGUMENTOS***")
print() #Funcion print() sin argumentos
print("Hello!") #Función print() con un argumento "Hello!"
print("Hello", "How was your day?", "I hope that you're ok.") #Función print() con tres argumrntos, separados por comas
print("Hola","¿Como estubo tu dia?","Espero estes bien.")
print('hola "lucero, como estas"',"bienvenida a Microsoft")
print("\n***LA MANERA POSICIONAL DE PASAR ARGUMENTOS***")
print("My name is","Python")
print("Monty Python.")
print("\n******ARGUMENTOS DE PALABRA CLAVE")
print("Hello", "Luz", "Daylight", end=" ")
print("Monty Python.")
print("My","name","is","Monty", "Python", sep="-*-")
print("\n***COMBINACIÓN DE ARGUMENTOS***")
print("My","name","is",sep="-",end="*")
print("Lucero","Luciano",sep="*",end="\n")
print("\n*** LABORATORIO ***")
print("Funadamentos","Programacion","en",sep="***",end="...")
print("Python")
print("\n\n")
print("*** LABORATORIO 2***")
print(" *\n * *\n * *\n * *")