from js import document,alert import random def shuffle(*ags, **kws): list_nama = list(document.getElementById('list_nama').value.split()); random.shuffle(list_nama) tmp = [] for i in range(len(list_nama)): tmp.append("Urutan Presentasi Ke-" + str(i+1) + " : Kelompok " + list_nama[i]) pyscript.write("result_shuffle", tmp)
text teacher

Enter a List of Names of Groups to be Randomized in the Order of Presentation:




Result:


Home About