Learn String Manipulation by Building a Cipher - Step 4

what happened is, in my step 4 of the python project, i keep writing a certain code which is

greet = “Hello!”
print(greet)
which i assume is correct because its working on the console ,but i can’t submit it and it keeps telling me to try again.

greet = “Hello!”

print(greet)


# User Editable Region

greet = 'Hello!'
print(greet)

# 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/121.0.0.0 Safari/537.36 Edg/121.0.0.0

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 4

Welcome to the forum @zayanalkhalaf7

Use the variable name asked for in the instructions.
Your code is using the one from the example.

Happy coding

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