Skip to content

Instantly share code, notes, and snippets.

View Kohako11's full-sized avatar

Miguel Wanzeler Kohako11

View GitHub Profile
import random
lista_1 = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
lista_2 = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
listas_juntas = list(zip(lista_1, lista_2))
random.shuffle(listas_juntas)
def senha_com_8(senha):
@Kohako11
Kohako11 / Calculadora.py
Created March 7, 2024 15:27
Calculadora de Geometria Plana
import time
def limpar():
print(' ' * 50)
def linha():
print('-' * 30)