ЗАДАЧА: Перевести этот код из с++ в Питон 3
#include <bits/stdc++.h>
using namespace std;
vector<long long > a;
int main()
{
int t, n;
cin >> t;
for(int i = 0; i < t; ++i){
cin >> n;
int s1 = pow(2, n), s2 = 0;
for(int i = 1; i < n/2; ++i)
s1+=pow(2, i);
for(int i = n/2; i < n; ++i)
s2+=pow(2, i);
cout << abs(s2 - s1) << endl;
}
return 0;
}