Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
O Python, o Universo e Tudo Mais
Search
Luan Fonseca de Farias
March 11, 2017
Programming
0
71
O Python, o Universo e Tudo Mais
Luan Fonseca de Farias
March 11, 2017
Tweet
Share
More Decks by Luan Fonseca de Farias
See All by Luan Fonseca de Farias
O que tem de tãããããão incrível assim no Python?
luanfonceca
0
39
Speakerfight - Python Day Natal
luanfonceca
0
67
GTD - Cap. 12
luanfonceca
0
27
QS
luanfonceca
0
26
168horas
luanfonceca
0
120
Refactoring
luanfonceca
0
39
Oxente
luanfonceca
3
140
speakerfight
luanfonceca
1
120
Python Básico
luanfonceca
0
73
Other Decks in Programming
See All in Programming
202507_ADKで始めるエージェント開発の基本 〜デモを通じて紹介〜(奥田りさ)The Basics of Agent Development with ADK — A Demo-Focused Introduction
risatube
PRO
6
1.4k
中級グラフィックス入門~効率的なメッシュレット描画~
projectasura
4
2.5k
JetBrainsのAI機能の紹介 #jjug
yusuke
0
190
大規模FlutterプロジェクトのCI実行時間を約8割削減した話
teamlab
PRO
0
450
Bedrock AgentCore ObservabilityによるAIエージェントの運用
licux
8
580
The State of Fluid (2025)
s2b
0
110
Vibe Codingの幻想を超えて-生成AIを現場で使えるようにするまでの泥臭い話.ai
fumiyakume
21
10k
あまり知られていない MCP 仕様たち / MCP specifications that aren’t widely known
ktr_0731
0
240
kiroでゲームを作ってみた
iriikeita
0
150
Go製CLIツールをnpmで配布するには
syumai
2
1.1k
新世界の理解
koriym
0
130
CEDEC2025 長期運営ゲームをあと10年続けるための0から始める自動テスト ~4000項目を50%自動化し、月1→毎日実行にした3年間~
akatsukigames_tech
0
110
Featured
See All Featured
Writing Fast Ruby
sferik
628
62k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.8k
Build The Right Thing And Hit Your Dates
maggiecrowley
37
2.8k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
15
1.6k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Balancing Empowerment & Direction
lara
1
540
Statistics for Hackers
jakevdp
799
220k
Producing Creativity
orderedlist
PRO
347
40k
Documentation Writing (for coders)
carmenintech
73
5k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.6k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
800
Git: the NoSQL Database
bkeepers
PRO
431
65k
Transcript
O Python, o Universo e Tudo Mais
Luan Fonseca Ex-estudante de ENGSOFT Pythonista desde sempre facebook.com/luanfonceca github.com/luanfonceca
[email protected]
Hello World print("Olar Mundo!")
O Python 1. Poderosa 2. Fácil de Aprender 3. Alto
Nível de Abstração 4. Multi-paradigma
Poderosa Legibilidade
Poderosa Legibilidade Comunidade
Poderosa Legibilidade Ferramentas Comunidade
Legibilidade def mistery(max): items = [] a, b = 0,
1 while b < max: items.append(b) a, b = b, a + b return(items)
def square(value): """ Returns the square of 'value' >>> square(10)
100 >>> square(10.434) 108.86835599999999 """ return value * value
# Just check the value if attr: print 'attr is
truthy!' # or check for the opposite if not attr: print 'attr is falsey!'
# or since None is considered # false, explicitly check
for it if not attr: print 'attr is falsey!'
Comunidade
[email protected]
http://facebook.com/PythonBrasil http://facebook.com/GrupyRN
Comunidade
Comunidade
Ferramentas
Ferramentas
Ferramentas
Fácil de Aprender
Alto Nível de Abstração vs.
Multi-paradigma numbers = [] for number in [1, 2, 3]:
numbers.append(number * 2) double = lambda n: n * 2 numbers = map(double, [1, 2, 3]))
O Universo 1. Projetos de Código Aberto 2. Empresas
Projetos de Código Aberto 1. github.com/datasciencebr/ serenata-de-amor 2. github.com/luanfonceca/ speakerfight
Empresas
Tudo Mais 1. Por Onde Começar 2. Overview das versões
3. Cenário Local
Por Onde Começar 1. Participe na Comunidade 2. Conheça Pessoas
3. Vá a eventos 4. Contribua com Projetos
Cenário Local 1. Empresas 2. Pessoas 3. Comunidades parceiras
Obrigado