2. What is the expected behavior of thefollowing program? print("Hello!")
Answers
Answered by
0
Answer:
hlo
Explanation:
hello short form hlo
Answered by
1
This program prints Hello,
print('Hello')
Output
Hello,
In this program, we have used the built-in print() function to print the string Hello, world! on our screen.By the way, a string is a sequence of characters. In Python, strings are enclosed inside single quotes, double quotes, or triple quotes.
Similar questions