Razón social: (Debe incluir el RUBRO o el NOMBRE de algunos de los socios. Ej.: Agrícola Los Muermos Limitada)
Servicios Informáticos Squape Limitada
Nombre de fantasía: (opcional)
Squape
<html> | |
<head></head> | |
<link href="styles.css" media="all" rel="stylesheet" type="text/css" /> | |
<body> | |
<div id="center"> | |
<div id="section"></div> | |
<div id="aside"></div> | |
</div> | |
</body> | |
</html> |
Razón social: (Debe incluir el RUBRO o el NOMBRE de algunos de los socios. Ej.: Agrícola Los Muermos Limitada)
Servicios Informáticos Squape Limitada
Nombre de fantasía: (opcional)
Squape
<html> | |
<head> | |
<title>Taller Web Development</title> | |
<link href="general.css" rel="stylesheet" media="all"> | |
</head> | |
<body> | |
<div class="sidebar" id="leftsidebar"> | |
<h3>Sitio Web</h3> | |
<hr /> |
def is_number(n): | |
try: | |
float(n) | |
return True | |
except ValueError: | |
return False | |
def is_symbol(n): | |
if n.isalnum() == False: | |
return True |
from reemplazar import borrarpuntuacion | |
entrada = raw_input(">>>") | |
print borrarpuntuacion(entrada) |
#----------------------------------------------------------------------------- | |
# Django+VirtualEnvWrapper | |
#----------------------------------------------------------------------------- | |
export PATH=/usr/local/bin:/usr/local/share/python:$PATH | |
export WORKON_HOME=$HOME/.virtualenvs | |
source /usr/local/share/python/virtualenvwrapper.sh | |
export PIP_VIRTUALENV_BASE=$WORKON_HOME |
pos = 0 | |
neg = 0 | |
print "Ingrese varios valores, termine con cero:" | |
c = '*' | |
while True: | |
num = int(raw_input()) | |
if num == 0: |
import turtle as t | |
from math import sqrt | |
t.forward(10) | |
t.right(90) | |
t.forward(10) | |
t.right(90) | |
t.forward(10) | |
t.right(90) | |
t.forward(10) |
#!/usr/bin/python | |
#Developed by A. Felipe Cabargas <[email protected]> | |
#All rights reserved 2013 - http://github.com/felipecabargas | |
def invertir_digitos(n): | |
return int(str(n)[::-1]) | |
n = int(raw_input("Ingrese n: ")) | |
p = invertir_digitos(n) |
minutos = float(raw_input("Minutos hablados: ")) | |
horario = raw_input("Horario: ") | |
if horario=="NOCHE": | |
subtotal = int(minutos*7) | |
else: | |
subtotal = int(minutos*10) | |
if subtotal > 1500: | |
descuento = int(subtotal/10) |