A apresentação está carregando. Por favor, espere

A apresentação está carregando. Por favor, espere

Grupo: Bruno W. Gonçalves, Michelle C. Colin, Vanessa S. Conceição.

Apresentações semelhantes


Apresentação em tema: "Grupo: Bruno W. Gonçalves, Michelle C. Colin, Vanessa S. Conceição."— Transcrição da apresentação:

1 Grupo: Bruno W. Gonçalves, Michelle C. Colin, Vanessa S. Conceição

2 Linguagem Orientada a Objetos Open Source Multiplataforma Scripting e Aplicações WEB com Django

3 Lançado por Guido Van Rossum em 1991 Computer Programming for Everybody Versão atual 3.3.0 Modelo de desenvolvimento comunitário – Python Software Foundation

4 Sintaxe clara e fácil de ler Um bloco de código é feito através da identação Orientação a Objetos intuitiva Tudo é objeto Tipagem dinâmica forte Pode-se atribuir a uma variável qualquer tipo de valor Multiplataforma Linguagem interpretada Rápido desenvolvimento Dont Repeat Yourself Keep It Simple Stupid

5 Extensa biblioteca padrão Módulos de terceiros para praticamente todas as tarefas Grande variedade de Frameworks Desenvolvimento para diversos tipos de arquitetura WEB Desktop Mobile Linguagem amigável

6 Componente padrão para diversos SO Linux Mac OSX Java Virtual Machine Jython.NET ironPython

7 YouTube Google Yahoo NASA GIMP Indústria de segurança da informação Industrial Light & Magic – Computação gráfica

8 Linguagens bastante diferentes editar-executar X editar-compilar-executar Estruturas nativas de dados Listas Dicionários Mais produtivo (de 5 a 10 vezes) Tipagem dinâmica X tipagem estática Conciso X prolixo compacto

9 JAVAPython if ( a > b ) { a = b; b = c; } if a > b : a = b b = c

10 Escrever na tela hello world JavaPython public class HelloWorld { public static void main (String[] args) { System.out.println(Hello World); } Print Hello World

11 Para abrir um arquivo JAVAPython import java.io.*;... BufferedReader myFile = new BufferedReader( new FileReader(argFilename)); # open an input file myFile = open(argFilename)

12 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!

13 http://henriquebastos.wufoo.com/reports/co mo-python-a-usado/ http://henriquebastos.wufoo.com/reports/co mo-python-a-usado/ http://archive.org/details/SeanKellyRecoveryf romAddiction http://archive.org/details/SeanKellyRecoveryf romAddiction

14 http://www.python.org/ http://www.python.org.br/ http://wiki.python.org/moin/LanguageComp arisons http://wiki.python.org/moin/LanguageComp arisons http://pt.wikipedia.org/wiki/Python http://pythonconquerstheuniverse.wordpress.com/category/java-and-python/ http://pythonconquerstheuniverse.wordpress.com/category/java-and-python/


Carregar ppt "Grupo: Bruno W. Gonçalves, Michelle C. Colin, Vanessa S. Conceição."

Apresentações semelhantes


Anúncios Google