Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.25 KB

File metadata and controls

34 lines (25 loc) · 1.25 KB

Meet My Chatbot Friend Starter Code

This is a place for you to start building your choose your own chatbot character!

Project Requirements

Your project should:

  • Use a for-loop to spell out the user's name.
  • Create print statements using string concatenation.
  • Use conditional statements to display facts about your chatbot.
  • Use a method to take case-insensitive input.
  • Use a while-loop to repeatedly ask a question.
  • Use a break statement to end the while-loop when the user types in "none".

Extensions

You can extend your project further by:

  • Customize your chatbot's responses.
  • Improve readability with wait time().
  • Recognize more than one response.
  • Create another conversation loop.

Attributions

*If you used any code, stories, or poems from another person or group of people, tell us about it here. Make sure it is in the public domain, has a license that allows you to use it, or is one of your own.

  • Add here if applicable

File Overview

← README.md

README.md file give you more documentation and information about a program. They are super helpful for describing what a program should do, any issues you've encountered, changes you want to make, and more.

← main.py

This is where you will write your main program.