I am new to RDF. And don't understand the difference between a list and multiple tripples. Is there a difference between the following two examples.
http://example.org/courses/6.001
s:students ex:Amy,
ex:Mohamed,
ex:Johann.
http://example.org/courses/6.001
s:students [
a rdf:Bag;
rdf:_1 ex:Amy;
rdf:_2 ex:Mohamed;
rdf:_3 ex:Johann
].
As far as I understand it, the second one uses a blank node, but is there a reason one should choose one solution over the other.
Thanks in advance!