Hi there
I am translating PERL code into PYTHON Code
My PERL code is
if ( my $client = $dealing_clients->{ $data->{fundId} } )
And i translated it into python as
if (client = dealing_clients[data["fundId"]]):
But it is giving my following Error
"Syntax Error While detecting Tuple"
Any one know how to fix this error and why i am getting this error?
Waiting for guidance. Thanks in advance.
Regards
Sarfraz