Skip to content
Advertisement

len(list) does not provide any result, whereas print(list) does. Why?

my homework is building number of prime number counting code. This is where I come so far.

JavaScript

Check

JavaScript

I initially thought that using ‘len’ would provide the number of prime numbers. But when I change ‘print’ to ‘len’ Nothing happened.

JavaScript

I would appreciate if you show me some insight What I did I wrong.

Advertisement

Answer

First of all, your syntax is wrong, but I assume that was because of copying the code to the question.

The problem is that the len() function returns the value (i.e. the length). So you have to either capture that value in a variable or return that value itself.

Example:

JavaScript

This will return the length of prime_list to the print function, which prints it out to the terminal.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement