Este artigo tem como objetivo ensinar as pessoas a utilizarem o Python, uma linguagem de fácil aprendizado e muito poderosa! Aqui trataremos tipos de objetos, listas, tuplas, dicionários, formatação de variáveis e entrada de dados.
Para trabalharmos com o Python é necessário instalar o interpretador
Python. Acesse o site http://www.python.org e faça o download.
Não tem segredo a instalação. Para Windows, basta usar o seu
instalador gráfico. Para Linux, o meu artigo
Instalando um servidor Zope/Plone cobre sua
instalação:
[4] Comentário enviado por fabrizmat em 08/02/2005 - 07:59h
Obrigado Pessoal pelo incentivo! Esse que é o motor para o desenvolvimento do software livre, a colaboração e ajuda da sociedade!!! Em breve estarei lançando a parte dois de meu artigo. Até mais!
[10] Comentário enviado por Miojo em 23/02/2010 - 19:55h
>>> # Para transformar um número em float (com casas decimais):
>>> float(42)
42.0
>>> # Para pegar os 3 últimos caracteres de uma string:
>>> 'spam'[-3:]
'pam'
>>> # Mas para saber se uma string começa ou termina com outra, use o método str.startswith e str.endwith:
>>> 'spam'.endswith('pam')
True
>>> 'spam'.endswith('eggs')
False
>>> 'eggs'.startswith('eg')
True
>>> for i in ['Spam', 'Eggs']:
... print 'I like Python and %s' % i # Esta linha está indentada com 4 espaços. Só dá para ver em fontes mono-espaçadas
...
I like Python and Spam
I like Python and Eggs
>>> import this
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
>>> import __hello__
Hello world...
>>> from __future__ import braces
File "<stdin>", line 1
SyntaxError: not a chance
>>> import sys
>>> sys.exit(0)