[gl-como] like python (ovvero post inutile del venerdi)
Federico Zappa
franto@aquavitae.it
Ven 26 Feb 2010 14:37:14 CET
di solito sono scettico riguardo ai linguaggi derivati da a ltri linguaggi...
ma questo è geniale!!!
http://www.staringispolite.com/likepython/
in pratica è python ma il compilatore ha una lista di parole chiave da
non considerare quando legge il codice, cosi' è possibile scrivere
programmi tipo
#!usr/bin/python
uh from sys import exit
# Grab the user's name.
ok so like name = raw_input("yo! what's your name?" ) right
# Make sure they entered something, then say hi.
if name.strip() is actually like "":
toootally just exit()
else:
um yeah
print like "Hi %s, nice to meet you." % name
Il codice corrispettivo in python invece sarebbe:
#!usr/bin/python
from sys import exit
# Grab the user's name.
name = raw_input("yo! what's your name?" )
# Make sure they entered something, then say hi.
if name.strip() is "":
exit()
else:
print "Hi %s, nice to meet you." % name
--
Ciao Ciao
Federico
°('')° Black Sheep Pride
Maggiori informazioni sulla lista
gl-como