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
73
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
40
Speakerfight - Python Day Natal
luanfonceca
0
68
GTD - Cap. 12
luanfonceca
0
28
QS
luanfonceca
0
27
168horas
luanfonceca
0
120
Refactoring
luanfonceca
0
40
Oxente
luanfonceca
3
140
speakerfight
luanfonceca
1
120
Python Básico
luanfonceca
0
74
Other Decks in Programming
See All in Programming
はじめてのMaterial3 Expressive
ym223
2
290
基礎から学ぶ大画面対応(Learning Large-Screen Support from the Ground Up)
tomoya0x00
0
430
testingを眺める
matumoto
1
140
Amazon RDS 向けに提供されている MCP Server と仕組みを調べてみた/jawsug-okayama-2025-aurora-mcp
takahashiikki
1
110
機能追加とリーダー業務の類似性
rinchoku
2
1.3k
AIと私たちの学習の変化を考える - Claude Codeの学習モードを例に
azukiazusa1
10
3.9k
Oracle Database Technology Night 92 Database Connection control FAN-AC
oracle4engineer
PRO
1
440
開発チーム・開発組織の設計改善スキルの向上
masuda220
PRO
20
11k
MCPでVibe Working。そして、結局はContext Eng(略)/ Working with Vibe on MCP And Context Eng
rkaga
5
2.3k
AIでLINEスタンプを作ってみた
eycjur
1
230
プロパティベーステストによるUIテスト: LLMによるプロパティ定義生成でエッジケースを捉える
tetta_pdnt
0
320
もうちょっといいRubyプロファイラを作りたい (2025)
osyoyu
1
430
Featured
See All Featured
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
920
Done Done
chrislema
185
16k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Practical Orchestrator
shlominoach
190
11k
Producing Creativity
orderedlist
PRO
347
40k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.9k
Scaling GitHub
holman
463
140k
Building Adaptive Systems
keathley
43
2.7k
Thoughts on Productivity
jonyablonski
70
4.8k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3k
KATA
mclloyd
32
14k
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