J Sequence Data Types

File Name: j_sequence_data_types.py ```python from stylepy import h1, h2, h3, h4, h5, h6

h1('\n >>>> Sequence Data Type Example')

h2('\n >>>> List Data Type Example') h3(' >>> Create N number of List element with same value') h4([7] * 4);

h3('\n >>>> Tuple Data Type Example') h4((1,2) * 4);

h5('\n >>>> Complex Data Type Example')```