简体   繁体   中英

Prolog- Put the result of a query in a list

I have these facts enroll(hazem,maths). enroll(hazem,science). and so on and I want to have student(X,ListOfCourses). that returns the courses X is taking in a list.

take a look at findall/3 bagof/3, setof/3, for example :

student(X, ListOfCourses) :-
    findall(Courses, enroll(X, Courses), ListOfCourses).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM