Complete the code to select the content format that is primarily text-based.
content_format = "[1]"
An article is a content format that mainly uses text to share information.
Complete the code to select the content format that uses sound and voice.
content_format = "[1]"
A podcast is an audio content format that uses sound and voice to share information.
Fix the error in the code to select the content format that uses images and minimal text.
content_format = "[1]"
An infographic uses images and minimal text to explain information clearly and quickly.
Fill both blanks to create a list of content formats that include a visual and an audio format.
content_formats = ["[1]", "[2]"]
Video is a visual format with moving images, and podcast is an audio format using sound.
Fill all three blanks to create a dictionary mapping content formats to their main medium.
content_mediums = {"article": "[1]", "video": "[2]", "podcast": "[3]"}Articles use text, videos use video (moving images), and podcasts use audio.