Apa output dari kode berikut?
for (int i=0; i<=20; i+=4) {
System.out.print(i + " ");
}
Ugliest Unicorn
for (int i=0; i<=20; i+=4) {
System.out.print(i + " ");
}
this = ["I", "am", "not", "a", "crook"]
that = ["I", "am", "not", "a", "crook"]
print("Test 1: {0}".format(this is that))
that = this
print("Test 2: {0}".format(this is that))