-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjp_func.py
executable file
·40 lines (32 loc) · 902 Bytes
/
jp_func.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
import os
def clear_screen():
os.system('cls' if os.name == 'nt' else 'clear')
if __name__ == "_main_":
clear_screen()
print("Bem vindo")
def pergunta():
perg = str(input("""Qual sua pergunta?
-->\033[92;1m """)).strip().upper()
return perg
def resposta(pergunta):
print("\033[mProcessando...")
if "VOCÊ ESTÁ BEM?" in pergunta:
print("Resposta:\033[94;1m Ótimo!\033[m")
else:
print("Sem respostas")
clear_screen()
resposta(pergunta())
def minha_entrada():
entrada_valida = False
while not entrada_valida:
try:
a = float(input("A>"))
b = float(input("B>"))
c = float(input("C>"))
entrada_valida = True
except ValueError:
print("Porra mas vc é burro pra porra...")
return a,b,c
a,b,c = minha_entrada()
print("a:{} b:{} c:{}".format(a,b,c))
#dlt = delta(a,b,c)