declare a string in python code example
Example 1: how to create string in python
string = "this is string"
string = 'this is also string'
Example 2: print string python
str1 = "Hello World"
print(str1)
Example 3: how to print a string in python
print("Insert your message here.")
Example 4: how to create a string in python
var1 = "A String"
Example 5: define a string in python
string1 = "something"
string2 = 'something else'
string3 = """
something
super
long
"""
Example 6: initialization string python
>>> x = None
>>> print type(x)
<type 'NoneType'>
>>> x = "text"
>>> print type(x)
<type 'str'>
>>> x = 42
>>> print type(x)
<type 'int'>