Question: Why does length([1.1]) return 7?

What does the command length( ) return when the input is a list? For example length([1,1]) returns 7, how does length arrive at this result?

Please Wait...