Last active
September 14, 2021 11:26
-
-
Save abdulx01/3dcd8e1669c9c1731b7e1c6e0a494f5a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from congrats import programmer | |
class Day256: | |
def __init__(self,good_to_have_it, are_essential, are_the_best): | |
self.job = good_to_have_it | |
self.teamates = are_essential | |
self.programmers = are_the_best | |
def congratulation(): | |
name = input("Enter your Name: ") | |
for u in range(365): | |
if u == 'programmer': | |
i_think = "You are awesome!" | |
print("f{name}",i_think ) | |
else: | |
print(f"{name}, it's time for you to learn some 'Python'") | |
def main(): | |
return programmer.wish('01001000 01100001 01110000 01110000\ | |
01111001 00100000 01010000 01110010\ | |
01101111 01100111 01110010 01100001\ | |
01101101 01101101 01100101 01110010\ | |
00100111 01110011 00100000 01000100\ | |
01100001 01111001 00100001') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment