8. What will be printed if we write print statement as
Print("Hello Python!")
Hello Python
b. Syntax Error
C. Name Error
d. Both a and b
Answers
Answered by
0
it is name error for that question
Answered by
1
Answer:
Its a syntax error
Explanation:
the correct syntax is 'print("Hello Python!")'
whereas in the question the syntax in with a capital 'P' in 'print'
this would be a syntax error as Python is a case-sensitive programming language
Similar questions