student_name = {"Karrie", "Freya", "Bruno"}
for name in student_name:
print("The student name is {0}".format(name))
I am trying to run this loop but the order the result is in this form
The student name is Freya
The student name is Karrie
The student name is Bruno