Got the answer. These rules to follow:
Strings can be enclosed only in:
- Single quotes.
- Triple single quotes.
- Double quotes.
- Triple double quotes.
- Whenever interpreter find ''' it will search other set of '''.
- We can mix Single quote +Triple single quotes like this 'test''' but not '''test'
and Double quotes + Triple double quotes like this "test""" but not """test"