-
-
Save aniruddha-adhikary/5350e9830de688f9e31872f76510be7e to your computer and use it in GitHub Desktop.
Say eid mubarak in different ways :D
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
import random | |
letters = (("ই", "ঈ"), ("দ",), (" ",), ("মো", "মু"), ("বা",), ("র", "রা", "রো"), ("ক",)) | |
greetings = "".join([letter_group[random.randrange(len(letter_group))] for letter_group in letters]) | |
print(greetings) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment