how to initialize string in python code example
Example 1: initialization string python
>>> x = None
>>> print type(x)
<type 'NoneType'>
>>> x = "text"
>>> print type(x)
<type 'str'>
>>> x = 42
>>> print type(x)
<type 'int'>
Example 2: how to create a string of text in python
Example = ("Text Goes Here")