Skip to content

Instantly share code, notes, and snippets.

View AhmedMikkawe's full-sized avatar

Ahmed Mikkawe AhmedMikkawe

View GitHub Profile
@AhmedMikkawe
AhmedMikkawe / take_a_break.py
Created February 6, 2018 00:12
take a break python program
#this is a simple program to help you to manage your time
#and don't waste it and to take a break or do your work if you already in a break
#this code created by Ahmed Mikkawe as a training for python on sunday 6/2/2018
#My level in programming : beginner
#My twitter account is : https://twitter.com/AhmedMikkawe or @AhmedMikkawe
#My github account is : https://github.com/AhmedMikkawe
#importing libraries
import time
from PIL import Image #PIL stands for Python Imaging Library and I used a fork for it called pillows
#program starts here
@AhmedMikkawe
AhmedMikkawe / knowMyAge.py
Created February 4, 2018 21:49
know my age python app
#this code created by Ahmed Mikkawe as training for python on sunday 4/2/2018
#My level in programming : beginner
#My twitter account is : https://twitter.com/AhmedMikkawe or @AhmedMikkawe
#My github account is : https://github.com/AhmedMikkawe
import datetime
def main():
print "** welcome to know my age **"
yearOfBirth = input("insert year of Birth:")
monthOfBirth = input("insert month of Birth:")
dayOfBirth = input("insert day of Birth:")