pyton print(str(3)) code example
Example 1: print string python
str1 = "Hello World"
print(str1)
Example 2: print string python
Name = "Jack"
print(" Good morning! Mr.",Name)
str1 = "Hello World"
print(str1)
Name = "Jack"
print(" Good morning! Mr.",Name)