-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmódulo_if_aula_04.py
43 lines (34 loc) · 1.02 KB
/
módulo_if_aula_04.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
# -*- coding: utf-8 -*-
"""Módulo if - Aula 04.ipynb
Automatically generated by Colaboratory.
Original file is located at
https://colab.research.google.com/drive/1EEOIquQtvI2DqsxqsJSFR5bpVtTYKDRB
# Comparadores
== igual
!= diferente
> maior que (>= maior ou igual)
< menor que (<= menor ou igual)
in texto existe dentro de outro texto
not verifica o contrário da comparação
Obs: Se em alguma condição você não quiser fazer nada, você pode simplesmente escrever:
pass
"""
faturamento_loja_1 = 2500
faturamento_loja_2 = 2200
email = "liragmail.com"
print('Programa 1')
if faturamento_loja_1 == faturamento_loja_2:
print('Os faturamentos são iguais')
else:
print('Os faturamentos são diferentes')
print('Programa 2')
if email != '[email protected]':
print('Esse não é o email do Lira')
else:
print('Email errado')
print('Programa 3')
email_usuario = input('Insira seu e-mail:')
if not '@' in email_usuario:
print('Email Inválido')
else:
pass