Skip to content

Instantly share code, notes, and snippets.

View an4s911's full-sized avatar

Anas Bashir an4s911

View GitHub Profile
from random import randint
from time import sleep
def timeprint(string):
"""
This Function helps to print any string in a typing way
As if someone is actually typing the content in the string in real time
"""
for i in string:
print(i, end="")