🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Project 12: Product Landing Page

Python Challenge
Step 1 of 3
Project

A Module for Landing Page Copy

Add a comment describing copy.py as a MODULE (a single .py file), versus landing_page/ as a PACKAGE (a folder with an __init__.py, able to hold many modules). Reach for a module while things are simple; graduate to a package once related code needs to be split across multiple files.

🎯 Your Task

Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!

# copy.py is a MODULE — a single file. landing_page/ (with an __init__.py inside)
# would be a PACKAGE — a folder that can hold many related modules. Start with a
# module; graduate to a package once the code outgrows one file.

TAGLINE = "The Ultimate Admin Dashboard Solution"
CTA_TEXT = "Start Free Trial"

print(TAGLINE)