|
|
|
@ -6,36 +6,34 @@
|
|
|
|
|
|
|
|
|
|
<title>Python</title> |
|
|
|
|
|
|
|
|
|
<meta name="author" content="Julio Biason"> |
|
|
|
|
<meta name="description" content="A framework for easily creating beautiful presentations using HTML"> |
|
|
|
|
<meta name="author" content="Hakim El Hattab"> |
|
|
|
|
|
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" /> |
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> |
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes"> |
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> |
|
|
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"> |
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="_external/reveal.min.css"> |
|
|
|
|
<link rel="stylesheet" href="_external/default.css" id="theme"> |
|
|
|
|
<link rel='stylesheet' href='_external/hightlight-default.min.css'> |
|
|
|
|
<link rel="stylesheet" href="reveal.js/css/reveal.css"> |
|
|
|
|
<link rel="stylesheet" href="reveal.js/css/theme/night.css" id="theme"> |
|
|
|
|
|
|
|
|
|
<!-- For syntax highlighting --> |
|
|
|
|
<!-- <link rel="stylesheet" href="_external/zenburn.css"> --> |
|
|
|
|
<link rel='stylesheet' href='_external/obsidian.css'> |
|
|
|
|
<!-- Code syntax highlighting --> |
|
|
|
|
<link rel="stylesheet" href="reveal.js/lib/css/zenburn.css"> |
|
|
|
|
|
|
|
|
|
<!-- If the query includes 'print-pdf', include the PDF print sheet --> |
|
|
|
|
<!-- Printing and PDF exports --> |
|
|
|
|
<script> |
|
|
|
|
if( window.location.search.match( /print-pdf/gi ) ) { |
|
|
|
|
var link = document.createElement( 'link' ); |
|
|
|
|
link.rel = 'stylesheet'; |
|
|
|
|
link.type = 'text/css'; |
|
|
|
|
link.href = '_external/pdf.css'; |
|
|
|
|
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'reveal.js/css/print/paper.css'; |
|
|
|
|
document.getElementsByTagName( 'head' )[0].appendChild( link ); |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<!--[if lt IE 9]> |
|
|
|
|
<script src="reveal.js/lib/js/html5shiv.js"></script> |
|
|
|
|
<script src="lib/js/html5shiv.js"></script> |
|
|
|
|
<![endif]--> |
|
|
|
|
|
|
|
|
|
<!-- personal styles --> |
|
|
|
|
<style> |
|
|
|
|
.semi-opaque { |
|
|
|
|
background-color: rgba(0, 0, 0, 0.7); |
|
|
|
@ -49,7 +47,6 @@
|
|
|
|
|
</head> |
|
|
|
|
|
|
|
|
|
<body> |
|
|
|
|
|
|
|
|
|
<div class="reveal"> |
|
|
|
|
<div class="slides"> |
|
|
|
|
<section data-background='_images/zen-of-python-poster-a3.png' class='semi-opaque'> |
|
|
|
@ -160,18 +157,24 @@
|
|
|
|
|
usam CamelCase.</h5> |
|
|
|
|
|
|
|
|
|
<p>Correto:</p> |
|
|
|
|
<p><pre><code data-trim> |
|
|
|
|
|
|
|
|
|
<pre><code class="hljs"> |
|
|
|
|
MinhaClasse |
|
|
|
|
|
|
|
|
|
minha_funcao() |
|
|
|
|
</code></pre></p> |
|
|
|
|
</code></pre> |
|
|
|
|
|
|
|
|
|
<p>Errado:</p> |
|
|
|
|
<p><pre><code data-trim> |
|
|
|
|
|
|
|
|
|
<pre><code class="hljs"> |
|
|
|
|
minhaClasse |
|
|
|
|
|
|
|
|
|
minhaFuncao() |
|
|
|
|
</code></pre></p> |
|
|
|
|
</code></pre> |
|
|
|
|
|
|
|
|
|
<pre><code class="hljs fragment"> |
|
|
|
|
CONSTANTES |
|
|
|
|
</code></pre> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
@ -202,18 +205,18 @@
|
|
|
|
|
|
|
|
|
|
<p>Correto:</p> |
|
|
|
|
|
|
|
|
|
<p><pre><code data-trim> |
|
|
|
|
<pre><code class="hljs"> |
|
|
|
|
(1 + 2) |
|
|
|
|
array[1] |
|
|
|
|
</code></pre></p> |
|
|
|
|
</code></pre> |
|
|
|
|
|
|
|
|
|
<p>Errado:</p> |
|
|
|
|
|
|
|
|
|
<p><pre><code data-trim> |
|
|
|
|
<pre><code class="hljs"> |
|
|
|
|
(1+2) |
|
|
|
|
( 1 + 2 ) |
|
|
|
|
array [ 1 ] |
|
|
|
|
</code></pre></p> |
|
|
|
|
</code></pre> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
@ -221,14 +224,15 @@
|
|
|
|
|
|
|
|
|
|
<p>Correto:</p> |
|
|
|
|
|
|
|
|
|
<p><pre><code data-trim> |
|
|
|
|
<pre><code class="hljs"> |
|
|
|
|
funcao(param=1) |
|
|
|
|
</code></pre></p> |
|
|
|
|
</code></pre> |
|
|
|
|
|
|
|
|
|
<p>Errado:</p> |
|
|
|
|
<p><pre><code data-trim> |
|
|
|
|
|
|
|
|
|
<pre><code class="hljs"> |
|
|
|
|
funcao(param = 1) |
|
|
|
|
</code></pre></p> |
|
|
|
|
</code></pre> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
@ -250,7 +254,7 @@
|
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<p><pre><code data-trim> |
|
|
|
|
<pre><code data-trim class='hljs'> |
|
|
|
|
$ python |
|
|
|
|
|
|
|
|
|
Python 2.7.5 (default, Jun 25 2014, 10:19:55) |
|
|
|
@ -517,10 +521,6 @@ True
|
|
|
|
|
<section> |
|
|
|
|
<p>Um objeto "iterável" é aquele que pode ter elementos |
|
|
|
|
acessados usando <code>[</code> e <code>]</code>.</p> |
|
|
|
|
|
|
|
|
|
<p class='fragment'>(Na verdade, o objeto tem que ter um <i>generator</i>; |
|
|
|
|
para acesar elementos diretamente, o objeto tem que implementar a função |
|
|
|
|
<code>__getitem__</code>.)</p> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
@ -720,7 +720,7 @@ iterável[start:end:step]
|
|
|
|
|
<section> |
|
|
|
|
<p><code>this</code>/<code>self</code> não é uma variável |
|
|
|
|
implícita da classe: Ela tem que constar <i>sempre</i> |
|
|
|
|
na definiçào do método.</p> |
|
|
|
|
na definição do método.</p> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
@ -728,10 +728,9 @@ iterável[start:end:step]
|
|
|
|
|
|
|
|
|
|
<p>Não existe função para o destrutor.</p> |
|
|
|
|
|
|
|
|
|
<p class='fragment'>Existem ainda outras funções (como o |
|
|
|
|
<code>__getitem__</code> comentado anteriormente), mas |
|
|
|
|
não vamos falar sobre elas nesse momento.</p> |
|
|
|
|
</section> |
|
|
|
|
<p class='fragment'>Existem ainda outras funções |
|
|
|
|
<i>mágicas</i>, mas não vamos falar sobre elas |
|
|
|
|
nesse momento.</p> </section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<p><pre><code data-trim> |
|
|
|
@ -809,12 +808,14 @@ Julio
|
|
|
|
|
<section> |
|
|
|
|
<p>Propriedades podem ser injetadas a qualquer momento.</p> |
|
|
|
|
|
|
|
|
|
<pre><code class="hljs"> |
|
|
|
|
>>> class A(object): |
|
|
|
|
>>> def __init__(self): |
|
|
|
|
>>> self.value = 10 |
|
|
|
|
>>> |
|
|
|
|
>>> a = A() |
|
|
|
|
>>> a.name = 'Julio' |
|
|
|
|
</code></pre> |
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
@ -951,29 +952,6 @@ Julio
|
|
|
|
|
|
|
|
|
|
<p>Saída de uma chamada desta função fica a cargo do leitor.</p> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<img src='_images/boring.gif'> |
|
|
|
|
|
|
|
|
|
<p>BORING!</p> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<p>A parte legal dos stars não é usar para criar funções que aceitam |
|
|
|
|
qualquer parâmetro (embora isso seja legal em alguns casos).</p> |
|
|
|
|
|
|
|
|
|
<p>A parte legal é fazer chamadas de funções com dicionários.</p> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<p><pre><code data-trim> |
|
|
|
|
>>> def funcao(a, b, c): |
|
|
|
|
>>> return (a + b) / c |
|
|
|
|
>>> |
|
|
|
|
>>> params = {'b': 2, 'c': 3, 'a':10} |
|
|
|
|
>>> funcao(**params) |
|
|
|
|
</code></pre></p> |
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
@ -1084,6 +1062,34 @@ Julio
|
|
|
|
|
|
|
|
|
|
<p>Não precisa alterar nenhuma chamada de <code>retrieve</code>.</p> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<p>Lembre-se: O resultado de uma função decorator é uma função.</p> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section> |
|
|
|
|
<h5>Decorators com classes</h5> |
|
|
|
|
|
|
|
|
|
<pre><code class="hljs"> |
|
|
|
|
>>> class CheckConn(object): |
|
|
|
|
>>> def __init__(self, func): |
|
|
|
|
>>> self.func = func |
|
|
|
|
>>> |
|
|
|
|
>>> def __call__(self, *args, **kwargs): |
|
|
|
|
>>> if 'connection' in kwargs: |
|
|
|
|
>>> connection = kwargs['connection'] |
|
|
|
|
>>> else: |
|
|
|
|
>>> connection = args[0] |
|
|
|
|
>>> |
|
|
|
|
>>> if not connection.is_connected: |
|
|
|
|
>>> connection.retry() |
|
|
|
|
>>> self.func(*args, **kwargs) |
|
|
|
|
|
|
|
|
|
>>> @CheckCon |
|
|
|
|
>>> def retrieve(connection): |
|
|
|
|
>>> # retrieve |
|
|
|
|
</code></pre> |
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<section data-background='_images/thats-all-folks.jpg'> |
|
|
|
@ -1092,11 +1098,11 @@ Julio
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<script src="_external/head.min.js"></script> |
|
|
|
|
<script src="_external/reveal.min.js"></script> |
|
|
|
|
<script src="reveal.js/lib/js/head.min.js"></script> |
|
|
|
|
<script src="reveal.js/js/reveal.js"></script> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
// Full list of configuration options available here: |
|
|
|
|
// Full list of configuration options available at: |
|
|
|
|
// https://github.com/hakimel/reveal.js#configuration |
|
|
|
|
Reveal.initialize({ |
|
|
|
|
controls: true, |
|
|
|
@ -1104,21 +1110,19 @@ Julio
|
|
|
|
|
history: true, |
|
|
|
|
center: true, |
|
|
|
|
|
|
|
|
|
theme: 'night', |
|
|
|
|
transition: 'linear', |
|
|
|
|
transition: 'slide', // none/fade/slide/convex/concave/zoom |
|
|
|
|
|
|
|
|
|
// Optional libraries used to extend on reveal.js |
|
|
|
|
// Optional reveal.js plugins |
|
|
|
|
dependencies: [ |
|
|
|
|
{ src: '_external/classList.js', condition: function() { return !document.body.classList; } }, |
|
|
|
|
{ src: '_external/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|
|
|
|
{ src: '_external/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|
|
|
|
{ src: '_external/highlight.min.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, |
|
|
|
|
{ src: '_external/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, |
|
|
|
|
{ src: '_external/notes.js', async: true, condition: function() { return !!document.body.classList; } } |
|
|
|
|
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } }, |
|
|
|
|
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|
|
|
|
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|
|
|
|
{ src: 'reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.configure({languages: ['python']}); hljs.initHighlightingOnLoad(); } }, |
|
|
|
|
{ src: 'reveal.js/plugin/zoom-js/zoom.js', async: true }, |
|
|
|
|
{ src: 'reveal.js/plugin/notes/notes.js', async: true } |
|
|
|
|
] |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
</body> |
|
|
|
|
</html> |
|
|
|
|