I used the following code:
for item in users_dict['items']:
sl_no = sl_no + 1
user_id_pass = item['user_id']
account_id_pass = item['account_id']
Name_pass = item['display_name']
if 'age' in item:
age_pass = item['age']
else:
age_pass = 0
stack_link_pass = item['link']
user_type_pass = item['user_type']
Location_pass = item['location']
if 'website_url' in item:
website_link_pass = item['website_url']
else:
website_link_pass = 'NA'
I am getting this error:
user_id_pass = item['user_id']
^
IndentationError: unexpected indent
please help me out
