print string value in python code example
Example 1: print string python
str1 = "Hello World"
print(str1)
Example 2: how to print string in python
print("Hello This is print string")
str1 = "Hello World"
print(str1)
print("Hello This is print string")