# Collections Tuple basics professions_in_the_industry = ("front-end", "back-end", "dev_ops", "qa") print("Professions in the industry : " +str(professions_in_the_industry)) print(type(professions_in_the_industry)) print("print of cell index #1 " +str(professions_in_the_industry[1])) print("print the last cell of the collections : " +str(professions_in_the_industry[-1])) print("print range of cell out of the tuple : " +str(professions_in_the_industry[1:3])) print("type the length of the collection : " +str(len(professions_in_the_industry)))