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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Luan Fonseca de Farias
March 11, 2017
Programming
0
78
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
47
Speakerfight - Python Day Natal
luanfonceca
0
74
GTD - Cap. 12
luanfonceca
0
33
QS
luanfonceca
0
30
168horas
luanfonceca
0
130
Refactoring
luanfonceca
0
43
Oxente
luanfonceca
3
150
speakerfight
luanfonceca
1
120
Python Básico
luanfonceca
0
76
Other Decks in Programming
See All in Programming
文字コードの話
qnighy
44
17k
コードレビューをしない選択 #でぃーぷらすトウキョウ
kajitack
3
910
Fundamentals of Software Engineering In the Age of AI
therealdanvega
1
250
S3ストレージクラスの「見える」「ある」「使える」は全部違う ─ 体験から見た、仕様の深淵を覗く
ya_ma23
0
410
Understanding Apache Lucene - More than just full-text search
spinscale
0
110
Angular-Apps smarter machen mit Gen AI: Lokal und offlinefähig - Hands-on Workshop!
christianliebel
PRO
0
110
CDIの誤解しがちな仕様とその対処TIPS
futokiyo
0
200
ポーリング処理廃止によるイベント駆動アーキテクチャへの移行
seitarof
3
1k
Ruby and LLM Ecosystem 2nd
koic
1
630
20260228_JAWS_Beginner_Kansai
takuyay0ne
5
500
Claude Codeログ基盤の構築
giginet
PRO
7
3k
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
480
Featured
See All Featured
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
1.8k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
Amusing Abliteration
ianozsvald
0
130
<Decoding/> the Language of Devs - We Love SEO 2024
nikkihalliwell
1
150
Believing is Seeing
oripsolob
1
80
Making the Leap to Tech Lead
cromwellryan
135
9.8k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.3k
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
0
230
Principles of Awesome APIs and How to Build Them.
keavy
128
17k
Facilitating Awesome Meetings
lara
57
6.8k
Code Review Best Practice
trishagee
74
20k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
128
55k
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