WHAT IS PYTHON? Python is a Programming language used to give commands to the computer for performing a task. print("Curious Chatbot") name = input( "what is your name?") print( "hello" , name, "! Nice to meet you!") doYouLikeCoding = input ("doYouLikeCoding?(Y/N)") if (doYouLikeCoding == 'y' or doYouLikeCoding == 'y'): print ("Great ! You have come to the right place then !") if (doYouLikeCoding == 'n' or doYouLikeCoding == 'N'): print( "Aww shucks ! I just love. T thing you'll kike it too when you know how much fun it is!") favoritemovie = input ("whic is your favorite move"?) if( favoritmovie == 'type your favorite movie' ): Pr...
Comments