Post

random bs reeeeeeeeeee

random bs reeeeeeeeeee

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
def conversation() :
    print("Do you like coding in python? Answer yes or no")
    answer = input().lower().strip()
    if answer == "yes":
        print("That's good - the United States needs more coders!!")
    elif answer == "no":
        print("Perhaps you will change your mind ")
    else:
        print("I dont Understand?")
    print("Goodbye") 
def main():
        print("Welcome to my conversation program")
        conversation()
        print("Thanks for chatting with me")

if __name__ == "__main__":
    main()
This post is licensed under CC BY 4.0 by the author.