85.3k views
3 votes
Codehs 6.1.6 tell a story!

can someone help me by doing this assignment or sending me the code i am struggling in this class and am far behind

2 Answers

2 votes

Answer:

Step-by-step explanation:

To complete the CodeHS 6.1.6 "Tell a Story" exercise, you need to create a program that prints out a story using variables, concatenation, and the `print()` function.

Here are the steps to follow:

1. First, you need to create variables to store different parts of your story. For example, you can create variables like `character`, `setting`, `problem`, and `solution`. Assign a value to each variable that corresponds to the specific part of the story you want to include.

2. Next, use the `print()` function to print out the different parts of the story. You can use concatenation to combine the variables with text strings to form complete sentences. For example, you can use `print("Once upon a time, there was a " + character)` to print out the introduction of the story.

3. Repeat the process for each part of the story, using concatenation to combine the variables with text strings to create meaningful sentences.

4. Make sure to include line breaks using the escape character `\\` to separate different parts of the story and make it more readable. For example, you can use `print("\\")` to add a line break between the introduction and the setting.

5. Finally, run your program and check if the story is printed out correctly. Make any necessary adjustments to the variables and the concatenation to ensure that the story flows smoothly.

```python

# Define the variables

character = "wizard"

setting = "enchanted forest"

problem = "lost their magic wand"

solution = "found a secret spellbook"

# Print out the story

print("Once upon a time, there was a " + character + ".")

print("They lived in an " + setting + ".")

print("One day, the " + character + " " + problem + ".")

print("But luckily, they " + solution + ".")

```

When you run this code, it will output the following story:

```

Once upon a time, there was a wizard.

They lived in an enchanted forest.

One day, the wizard lost their magic wand.

But luckily, they found a secret spellbook.

```

User Evets
by
8.9k points
3 votes

Final answer:

Follow these general steps to complete your CodeHS 6.1.6 assignment and seek assistance for specific problems or questions.

Step-by-step explanation:

In order to help you with your CodeHS 6.1.6 assignment, we will need more details about the specific problem you are facing. However, here are some general steps you can follow to complete the assignment:

  1. Identify the requirements of the assignment by carefully reading the prompt.
  2. Break down the problem into smaller tasks and create a plan for solving each task.
  3. Write the code using the programming language specified in the assignment.
  4. Test your code to ensure it works as expected.
  5. If you encounter any errors or issues, debug your code by reviewing the logic and syntax.
  6. Once you have successfully completed the assignment, submit it according to your teacher's instructions.

Remember, it's important to understand the underlying concepts behind the assignment rather than just copying someone else's code. If you have any specific questions or need further assistance, feel free to ask!

User ElmerCat
by
7.0k points