Як ШІ замінить менеджерів
#python #ai
#python #ai
import time
import random
def random_status_prompt():
prompts = [
"What is your current status?",
"Any blockers?",
"Update your JIRA, please."
]
# Sleep for a random number of minutes (converted to seconds)
sleep_minutes = random.randint(1, 10)
print(f"Sleeping for {sleep_minutes} minute(s)...")
time.sleep(sleep_minutes * 60)
# Pick a random prompt and display it
message = random.choice(prompts)
print(message)
if __name__ == "__main__":
random_status_prompt()
😁67👏1