Skip to main content

Python 2, 51 bytes

print["Code\x20Golf","Programming Puzzles"][" ">""]

Try it online!

With all spaces removed:

print["Code\x20Golf","ProgrammingPuzzles"]["">""]

Try that online!

Thanks to Stephen S for 3 bytes

user45941