How to get frappe app and then next app using loop in python for follow json data

{“message”:[“frappe”,“websocerp”,“erpnext”]}

import json
ret = {"message":["frappe","websocerp","erpnext"]}
app_list = json.loads(ret)["message"]
        
for app in app_list:
    print app

thank you friend I am beginner that’s why I am asking if question may simplest. but thanks for your patience.