Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
tutorial

04 Mixed List

📝 Instructions:

  1. Write a function to programmatically print in the console the types of values that the list contains in each position.

  2. You can use a for loop.

💡 Hints:

  • You can use the type() Python function.

  • Remember that len() returns the length of your list.

💻 Expected result:

<class 'int'>
<class 'bool'>
<class 'str'>
<class 'list'>
<class 'str'>
<class 'float'>
<class 'dict'>