I want to use count function from itertools module. When I try to import full module
import itertools
The count function isn't accessible. I can use it only when I import it like this
from itertools import count
how I can import full module functions without importing them one by one