Open Akshaysharma101 opened 4 years ago
.next() is not supported on python3.x. Change .next() to .__next__(). Example: self._data_1.__next__() .
.__next__()
self._data_1.__next__()
Hope this will resolve your problem.
I have resolved the problem yet. Thank you
.next() is not supported on python3.x. Change .next() to
.__next__()
. Example:self._data_1.__next__()
.Hope this will resolve your problem.