34
Introdução ao Python

Introdução ao Python

Embed Size (px)

Citation preview

Page 1: Introdução ao Python

Introdução ao Python

Page 2: Introdução ao Python

Quem sou

• Lucas Castejon

• 4°sem “Sistemas de Informação” Uni-FACEF

• Célula Digital Software

• Python

Page 3: Introdução ao Python

• Criado em 1991

• por Guido van Rossum

História Python

Page 4: Introdução ao Python

• Python é uma linguagem de alto nível

• Tipada

• Sintaxe simples

• Orientada a Objetos

• Multiplataforma

Python

Page 5: Introdução ao Python

• Fácil aprendizado

• Mais em pouco tempo

• Sintaxe limpa

• Divertida de programar

Porque Python?

Page 6: Introdução ao Python

Python++

Page 7: Introdução ao Python

Quem usa Python

Page 8: Introdução ao Python

Quem usa Python

Page 9: Introdução ao Python

Python nos Jogos

Page 10: Introdução ao Python

www.brasil.gov.br

Python no Governo Brasileiro

Page 11: Introdução ao Python

Python nos Filmes

Page 12: Introdução ao Python

Python Hardwares

Page 14: Introdução ao Python

....................... 1 ano

..

............................... 3 meses

............. 3 semanas

Python vs C e Java

Page 15: Introdução ao Python

Python vs C e Java

Page 16: Introdução ao Python

Python vs Java

Page 17: Introdução ao Python

Falando de Python

Page 18: Introdução ao Python

Falando de Python

Page 19: Introdução ao Python

Falando de Python

Page 20: Introdução ao Python

Falando de Python

Page 21: Introdução ao Python

• Lembrando que MacOS e Linux já vem com interpretador Python

• Site para o download:

www.python.org

Instalando Python

Page 22: Introdução ao Python

IDLE(python)

Pycharm

Sublime

Eclipse (pydev)

Editores Python

Page 23: Introdução ao Python

Python Shell

>>> a = ‘cleandev’ >>> a1 = 10 >>> b = a + ‘ .org’ >>> c = b.upper() >>> c = b.lower() >>> d = len(c) >>> e = c[2] >>> type(e) >>> dir(objeto) >>> help(objeto)

Page 24: Introdução ao Python

10/08/2013

Python Shell

>>> nome1 = ‘lucas castejon alves’ >>> nome2 = nome1.split(‘ ‘) ou (‘-’) ou (‘/’) >>> a = nome.find(‘alves’) >>> b = input(‘informe um elemento’) >>> if, elif, else >>> for, while, def >>> range(0,10,2) (numero par 0x10) >>> lista = {} >>> lista[0] = 10 >>> lista = [1,2,3] >>> lista.insert(1,22)

Page 25: Introdução ao Python

Pesquisando em txt

Page 26: Introdução ao Python

Jogo Aquecimento sorteio

Page 27: Introdução ao Python

Facebook

Page 28: Introdução ao Python

Facebook Picture

Page 29: Introdução ao Python

Facebook Name Friends

Page 30: Introdução ao Python

Facebook Photos Friends

Page 31: Introdução ao Python

PythonMania

Page 32: Introdução ao Python

PythonMania

Page 33: Introdução ao Python

• MASANORI, Fernando – Introdução Python

• SRCWARE, - Tutorial Python – Arrays and Strings

• PYTHON, Introdução ao Python

Bibliografia

Page 34: Introdução ao Python

FELIZ DIA DOS PAIS