python print with string code example
Example 1: print string python
str1 = "Hello World"
print(str1)
Example 2: print string python
Name = "Jack"
print(" Good morning! Mr.",Name)
Example 3: output something in python
print("Hello World!")
>>> Hello World!
Example 4: python print
print("MOHAMMAD SHAWAKHA")