Final answer:
Using 'Print' instead of 'print' will result in a SyntaxError in Python due to incorrect capitalization of the function name.
Step-by-step explanation:
The code Print("Hello World!") will result in a SyntaxError. In Python, the correct function to output text to the console is print, not Print. Therefore, the use of the capital 'P' instead of a lowercase 'p' will cause Python to raise a SyntaxError because it does not recognize Print as a valid function or keyword in its language.