import time
import os
# The sentence to generate
sentence = """Hey there, I'm Reza, a passionate programmer from Iran.
Skilled in backend development with python,
linux lover,
active in competitive programming,
and a computer engineering student."""
# Clear the terminal
os.system('clear')
# Generate and print the sentence word by word
for char in sentence:
print(char, end="", flush=True)
if char == '\n':
time.sleep(0.3)
continue
time.sleep(0.1) # wait 1 second before printing the next word
print()
Software and Tools:
Databases: