Skip to content

Instantly share code, notes, and snippets.

View elianekelm's full-sized avatar

Eliane Kelm elianekelm

  • Foz do Iguaçu, Brazil
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@elianekelm
elianekelm / jogo_adivinhacao.py
Created March 30, 2021 01:28
Jogo da Adivinhação - Python - Usando cores
#print('======== DESAFIO 028 ========') #Esse desafio faz parte do CursoEmVideo - professor Guanabara.
from random import randint
from time import sleep
print('\033[1:33m-=-' * 20)
print('\033[34mVou pensar em um número entre 0 e 5. Tente adivinhar...')
print('\033[1:33m-=-' * 20)
print('\033[0mPROCESSANDO...')
sleep(2)
@elianekelm
elianekelm / sorteio_ordem_lista.py
Created March 26, 2021 14:24
Sorteando uma ordem na Lista em Python - random.schuffle()
print('======== DESAFIO 020 ========')
from random import shuffle
alunos = []
x = 1
while x < 5:
nome_aluno = input(f'Nome do {x}º Aluno: ')
alunos.append(nome_aluno)
x += 1
@elianekelm
elianekelm / sen_cos_tan.py
Created March 26, 2021 13:47
Seno, Cosseno e Tangente em Python
print('======== DESAFIO 018 ========')
from math import sin, cos, tan, radians
angulo = float(input('Digite o valor do ângulo: '))
print(f'Seno = {sin(radians(angulo)):.2f}')
print(f'Cosseno = {cos(radians(angulo)):.2f}')
print(f'Tangente = {tan(radians(angulo)):.2f}')
@elianekelm
elianekelm / sorteio_por_nome.py
Created March 25, 2021 19:04
desafio019_Guanabara
print('\n======= DESAFIO 019 =======')
import random
alunos = []
while len(alunos) < 4:
nome_aluno = input('Nome do Aluno: ')
alunos.append(nome_aluno)
print(f'O aluno escolhido para apagar o quadro foi: {random.choice(alunos).upper()}')