-
Notifications
You must be signed in to change notification settings - Fork 0
/
function.py
44 lines (30 loc) · 885 Bytes
/
function.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
# def boas_vindas():
# print('Olá Deivid!')
# print('Temos 5 laptops em estoque')
# boas_vindas()
# def somar_dois_numeros():
# numero1 = 10
# numero2 = 5
# resultado = numero1 + numero2
# print(resultado)
# somar_dois_numeros()
# def boas_vindas(nome,quantidade):
# print(f'Olá {nome}.')
# print(f'Temos {quantidade} laptops em estoque')
# boas_vindas('Maria', 4)
# Argumento que define valor é default
# Argumento sem valor é não default
# def boas_vindas(nome,quantidade=6):
# print(f'Olá {nome}.')
# print(f'Temos {quantidade} laptops em estoque')
# boas_vindas('Maria')
# Functions (Funções)
# DRY - Don't repeat youself
# Realizam uma tarefa
# Calcula e retorna um valor
def cliente1(nome):
print(f'Olá {nome}')
cliente1('Maria')
def cliente2(nome):
return f'Olá {nome}'
print(cliente2('José'))