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
70
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
72
Other Decks in Programming
See All in Programming
なぜ「共通化」を考え、失敗を繰り返すのか
rinchoku
1
510
イベントストーミング図からコードへの変換手順 / Procedure for Converting Event Storming Diagrams to Code
nrslib
1
370
git worktree × Claude Code × MCP ~生成AI時代の並列開発フロー~
hisuzuya
1
470
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
230
5つのアンチパターンから学ぶLT設計
narihara
1
110
VS Code Update for GitHub Copilot
74th
1
360
PHPでWebSocketサーバーを実装しよう2025
kubotak
0
150
GitHub Copilot and GitHub Codespaces Hands-on
ymd65536
1
120
第9回 情シス転職ミートアップ 株式会社IVRy(アイブリー)の紹介
ivry_presentationmaterials
1
240
Create a website using Spatial Web
akkeylab
0
300
Kotlin エンジニアへ送る:Swift 案件に参加させられる日に備えて~似てるけど色々違う Swift の仕様 / from Kotlin to Swift
lovee
1
250
datadog dash 2025 LLM observability for reliability and stability
ivry_presentationmaterials
0
110
Featured
See All Featured
Building a Modern Day E-commerce SEO Strategy
aleyda
41
7.3k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.8k
Code Reviewing Like a Champion
maltzj
524
40k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
2.9k
Visualization
eitanlees
146
16k
Mobile First: as difficult as doing things right
swwweet
223
9.7k
GraphQLとの向き合い方2022年版
quramy
47
14k
Code Review Best Practice
trishagee
68
18k
Why You Should Never Use an ORM
jnunemaker
PRO
56
9.4k
Music & Morning Musume
bryan
46
6.6k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
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