Skip to content

Instantly share code, notes, and snippets.

View devenes's full-sized avatar
☁️

Enes devenes

☁️
View GitHub Profile
@devenes
devenes / send_mail.ipynb
Last active March 26, 2022 13:09
The goal here is to make it as simple and painless as possible to send emails.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@devenes
devenes / numero.py
Created March 24, 2022 13:02
First Factorial
def FirstFactorial(numero):
numero = int(input("Enter a number: "))
i = 1
if(numero == 0):
return "1"
for i in range(1, numero):
numero = numero*i