how do i print sting in python code example
Example 1: print string python
str1 = "Hello World"
print(str1)
Example 2: how to print a string in python
print("Insert your message here.")
Example 3: print string python
Name = "Jack"
print(" Good morning! Mr.",Name)