Learn String Manipulation by Building a Cipher - Step 4

Tell us what’s happening:

I feel so dumb typing this but what am I supposed to put here? I have no clue.

Your code so far


# User Editable Region

greet='Hello!'
print('Hello!')

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 4

Hi @caitymtz127 and welcome to fCC community.
You created a variable. Now you are required to print that variable to screen.
Arguments are to be added inside the brackets. This tells a function what it should act on.

There is an example in your task. Here is additional example to guide you:

variable = value
print(variable)

:+1: Happy coding.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.