My C++ is functioning as expected but the equivalent Python code hangs in an infinite loop. Help!
C++
#include <iostream>
using namespace std;
int main()
{
    for(int i=0;i<4;++i){
        int j=0;
        while(i!=j){
            ++j;
            cout<<j<<endl;
        }
    }
}
Python
for i in range(4):
    j = 0
    while i != j:
        ++j
        print(j)
 
     
    