Detailed map traversal, teach you to master the complex gremlin query debugging method>>>
cannot import name ‘izip’ from ‘itertools’
Python 3 does not support:
Solution:
try:
from itertools import izip
except ImportError:
izip = zip
Detailed map traversal, teach you to master the complex gremlin query debugging method>>>
cannot import name ‘izip’ from ‘itertools’
Python 3 does not support:
Solution:
try:
from itertools import izip
except ImportError:
izip = zip