-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.py
46 lines (29 loc) · 760 Bytes
/
about.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#By Gabriel Xavier - Dotket :]
#Learning Python - Backend
# ============ Paradigms ============
# Programa Orientada a Objetos ( POO )
class dog:
def __init__(self, name):
self.name = name
def eat(self):
print(f'{self.name} está comendo')
def latir(self):
print(f'{self.name} está latindo, au aU AU AU')
maillom = dog('Maillom')
belinha = dog('Belinha')
maillom.latir()
belinha.eat()
# Programação Funcional
def double(x):
return x * 2
numbers = [1, 2, 3, 4]
res = list(map(double, numbers))
print(res)
# Programação Procedural
def calc_area_rectangle(width, height):
area = width * height
return area
wid = 10
hei = 5
res = calc_area_rectangle(wid, hei)
print(res)