Skip to content

Instantly share code, notes, and snippets.

@psicobyte
Last active December 20, 2015 18:59
Show Gist options
  • Save psicobyte/6179960 to your computer and use it in GitHub Desktop.
Save psicobyte/6179960 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
#coding: utf-8
Nombre1= raw_input("Escribe tu nombre: ")
if Nombre1 == "":
print "¡No has escrito nada!"
elif Nombre1 == "Psicobyte":
print "¡Qué nombre tan chulo! ¿Eres hacker o algo así?"
elif Nombre1 == "Python" or Nombre1 == "python":
print "Tienes nombre de lenguaje de programación"
else:
print "Hola", Nombre1
Nombre2= raw_input("Escribe tu nombre: ")
if Nombre2 == "":
print "¡No has escrito nada!"
elif Nombre2 == "Psicobyte":
print "¡Qué nombre tan chulo! ¿Eres hacker o algo así?"
elif Nombre2 == "Python" or Nombre2 == "python":
print "Tienes nombre de lenguaje de programación"
else:
print "Hola", Nombre2
Nombre3= raw_input("Escribe tu nombre: ")
if Nombre3 == "":
print "¡No has escrito nada!"
elif Nombre3 == "Psicobyte":
print "¡Qué nombre tan chulo! ¿Eres hacker o algo así?"
elif Nombre3 == "Python" or Nombre3 == "python":
print "Tienes nombre de lenguaje de programación"
else:
print "Hola", Nombre3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment