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 time | |
import os | |
play_one = str(input("PLAYER ONE: What is your name? ")) | |
play_two = str(input("PLAYER TWO: What is your name? ")) | |
os.system('cls') | |
time.sleep(1) | |
print("Thank you! Alright", play_one, "and", play_two, "let us begin!") | |
time.sleep(5) | |
os.system('cls') | |
sent_1 = str(input("Part 1/3 PLAYER ONE: Enter a sentence that ends with the word AND ... ")) |