├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── python-dasar.iml └── vcs.xml ├── 01-hello-world └── hello-world.py ├── 02-aturan-sintaks ├── 01-case-sensitive.py ├── 02-tidak-menggunakan-titik-koma.py ├── 03-indentasi.py ├── 04-tipe-data-tidak-strict.py └── 05-tanda-petik.py ├── 03-tipe-data-dan-variabel ├── 01-overview.py ├── 02-numbers.py ├── 03-string.py ├── 04-beda-numerik-dan-string.py ├── 05-boolean.py ├── boolean.py └── string.py ├── 04-list ├── 01-list.py ├── 02-slicing.py ├── 03-ubah-data.py ├── 04-menambah-dan-menghapus-data.py ├── 05-menggabungkan-list.py └── 06-mengurutkan-data.py ├── 05-tuple ├── 01-tuple.py ├── 02-slicing.py └── 03-sequence-unpacking.py ├── 06-operator ├── 01-aritmatika.py ├── 02-perbandingan.py ├── 03-penugasan.py ├── 04-logika.py ├── 05-keanggotaan.py ├── 06-identitas.py └── 07-bitwise.py ├── 07-input ├── 01-string.py └── 02-int.py ├── 08-output ├── 01-tanpa-argumen.py ├── 02-separator.py ├── 03-end.py ├── 04-gabungan-end-dan-sep.py └── 05-format.py ├── 09-percabangan ├── 01-if.py ├── 02-if-else.py ├── 03-if-elif-else.py ├── 04-kenapa-elif-tidak-if.py ├── 05-operator-logika.py ├── 06-if-else-satu-baris.py └── 07-percabangan-bertingkat.py ├── 10-perulangan-for ├── 01-for-untuk-list.py ├── 02-for-untuk-range.py ├── 03-for-dengan-tuple.py ├── 04-for-dengan-string.py ├── 05-break-and-continue.py ├── 06-for-else.py └── 07-for-else-break.py ├── 11-perulangan-while ├── 01-tak-terbatas.py ├── 02-seperti-range.py ├── 03-while-dan-list.py ├── 04-while-dengan-inputan.py ├── 05-while-continue.py ├── 06-while-break.py └── 07-while-else-break.py ├── 12-perulangan-bertingkat ├── 01-alur-dasar.py ├── 02-dengan-while.py ├── 03-binis-cintih-prigrim.py ├── 04-bonus-pola-kotak.py └── 05-bonus-pola-segitiga.py ├── 13-set ├── 01-membuat-set.py ├── 02-unchangable.py ├── 03-unik.py ├── 04-menambah-anggota.py ├── 05-menghapus-anggota.py ├── 06-keanggotaan.py └── 07-perulangan.py ├── 14-dictionary ├── 01-perkenalan.py ├── 02-unique.py ├── 03-membuat-dictionary.py ├── 04-mengakses-dictionary.py ├── 05-perulangan.py ├── 06-mengubah-nilai.py ├── 07-menambah-data.py ├── 08-menghapus-data.py ├── 09-keanggotaan.py └── 10-panjang-dictionary.py ├── 15-fungsi ├── 01-membuat-dan-memanggil-fungsi.py ├── 02-parameter.py ├── 03-parameter-wajib.py ├── 04-parameter-optional.py ├── 05-parameter-tidak-berurut.py ├── 06-mengembalikan-nilai.py ├── 07-multi-return.py ├── 08-ruang-lingkup-variabel.py └── 09-docstring.py ├── 16-rekursif ├── 01-hello-world.py ├── 02-satu-sampai-sepuluh-step-1.py ├── 03-satu-sampai-sepuluh-step-2.py ├── 04-satu-sampai-sepuluh-step-3.py ├── 05-sepuluh-sampai-satu.py ├── 06-sepuluh-sampai-satu-ilustrasi.py └── 07-satu-sepuluh-satu.py ├── 17-pass └── 01-pass.py ├── 18-perbedaan-list-tuple-set ├── 01-akses-data.py ├── 02-edit.py ├── 03-tambah-data.py ├── 04-hapus-data.py └── 05-perulangan.py ├── LICENSE └── README.md /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/python-dasar.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/.idea/python-dasar.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /01-hello-world/hello-world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/01-hello-world/hello-world.py -------------------------------------------------------------------------------- /02-aturan-sintaks/01-case-sensitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/02-aturan-sintaks/01-case-sensitive.py -------------------------------------------------------------------------------- /02-aturan-sintaks/02-tidak-menggunakan-titik-koma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/02-aturan-sintaks/02-tidak-menggunakan-titik-koma.py -------------------------------------------------------------------------------- /02-aturan-sintaks/03-indentasi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/02-aturan-sintaks/03-indentasi.py -------------------------------------------------------------------------------- /02-aturan-sintaks/04-tipe-data-tidak-strict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/02-aturan-sintaks/04-tipe-data-tidak-strict.py -------------------------------------------------------------------------------- /02-aturan-sintaks/05-tanda-petik.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-tipe-data-dan-variabel/01-overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/03-tipe-data-dan-variabel/01-overview.py -------------------------------------------------------------------------------- /03-tipe-data-dan-variabel/02-numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/03-tipe-data-dan-variabel/02-numbers.py -------------------------------------------------------------------------------- /03-tipe-data-dan-variabel/03-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/03-tipe-data-dan-variabel/03-string.py -------------------------------------------------------------------------------- /03-tipe-data-dan-variabel/04-beda-numerik-dan-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/03-tipe-data-dan-variabel/04-beda-numerik-dan-string.py -------------------------------------------------------------------------------- /03-tipe-data-dan-variabel/05-boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/03-tipe-data-dan-variabel/05-boolean.py -------------------------------------------------------------------------------- /03-tipe-data-dan-variabel/boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/03-tipe-data-dan-variabel/boolean.py -------------------------------------------------------------------------------- /03-tipe-data-dan-variabel/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/03-tipe-data-dan-variabel/string.py -------------------------------------------------------------------------------- /04-list/01-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/04-list/01-list.py -------------------------------------------------------------------------------- /04-list/02-slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/04-list/02-slicing.py -------------------------------------------------------------------------------- /04-list/03-ubah-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/04-list/03-ubah-data.py -------------------------------------------------------------------------------- /04-list/04-menambah-dan-menghapus-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/04-list/04-menambah-dan-menghapus-data.py -------------------------------------------------------------------------------- /04-list/05-menggabungkan-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/04-list/05-menggabungkan-list.py -------------------------------------------------------------------------------- /04-list/06-mengurutkan-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/04-list/06-mengurutkan-data.py -------------------------------------------------------------------------------- /05-tuple/01-tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/05-tuple/01-tuple.py -------------------------------------------------------------------------------- /05-tuple/02-slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/05-tuple/02-slicing.py -------------------------------------------------------------------------------- /05-tuple/03-sequence-unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/05-tuple/03-sequence-unpacking.py -------------------------------------------------------------------------------- /06-operator/01-aritmatika.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/06-operator/01-aritmatika.py -------------------------------------------------------------------------------- /06-operator/02-perbandingan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/06-operator/02-perbandingan.py -------------------------------------------------------------------------------- /06-operator/03-penugasan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/06-operator/03-penugasan.py -------------------------------------------------------------------------------- /06-operator/04-logika.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/06-operator/04-logika.py -------------------------------------------------------------------------------- /06-operator/05-keanggotaan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/06-operator/05-keanggotaan.py -------------------------------------------------------------------------------- /06-operator/06-identitas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/06-operator/06-identitas.py -------------------------------------------------------------------------------- /06-operator/07-bitwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/06-operator/07-bitwise.py -------------------------------------------------------------------------------- /07-input/01-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/07-input/01-string.py -------------------------------------------------------------------------------- /07-input/02-int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/07-input/02-int.py -------------------------------------------------------------------------------- /08-output/01-tanpa-argumen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/08-output/01-tanpa-argumen.py -------------------------------------------------------------------------------- /08-output/02-separator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/08-output/02-separator.py -------------------------------------------------------------------------------- /08-output/03-end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/08-output/03-end.py -------------------------------------------------------------------------------- /08-output/04-gabungan-end-dan-sep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/08-output/04-gabungan-end-dan-sep.py -------------------------------------------------------------------------------- /08-output/05-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/08-output/05-format.py -------------------------------------------------------------------------------- /09-percabangan/01-if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/09-percabangan/01-if.py -------------------------------------------------------------------------------- /09-percabangan/02-if-else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/09-percabangan/02-if-else.py -------------------------------------------------------------------------------- /09-percabangan/03-if-elif-else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/09-percabangan/03-if-elif-else.py -------------------------------------------------------------------------------- /09-percabangan/04-kenapa-elif-tidak-if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/09-percabangan/04-kenapa-elif-tidak-if.py -------------------------------------------------------------------------------- /09-percabangan/05-operator-logika.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/09-percabangan/05-operator-logika.py -------------------------------------------------------------------------------- /09-percabangan/06-if-else-satu-baris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/09-percabangan/06-if-else-satu-baris.py -------------------------------------------------------------------------------- /09-percabangan/07-percabangan-bertingkat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/09-percabangan/07-percabangan-bertingkat.py -------------------------------------------------------------------------------- /10-perulangan-for/01-for-untuk-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/10-perulangan-for/01-for-untuk-list.py -------------------------------------------------------------------------------- /10-perulangan-for/02-for-untuk-range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/10-perulangan-for/02-for-untuk-range.py -------------------------------------------------------------------------------- /10-perulangan-for/03-for-dengan-tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/10-perulangan-for/03-for-dengan-tuple.py -------------------------------------------------------------------------------- /10-perulangan-for/04-for-dengan-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/10-perulangan-for/04-for-dengan-string.py -------------------------------------------------------------------------------- /10-perulangan-for/05-break-and-continue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/10-perulangan-for/05-break-and-continue.py -------------------------------------------------------------------------------- /10-perulangan-for/06-for-else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/10-perulangan-for/06-for-else.py -------------------------------------------------------------------------------- /10-perulangan-for/07-for-else-break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/10-perulangan-for/07-for-else-break.py -------------------------------------------------------------------------------- /11-perulangan-while/01-tak-terbatas.py: -------------------------------------------------------------------------------- 1 | while (1 + 2 == 3): 2 | print('Halo dunia!') 3 | -------------------------------------------------------------------------------- /11-perulangan-while/02-seperti-range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/11-perulangan-while/02-seperti-range.py -------------------------------------------------------------------------------- /11-perulangan-while/03-while-dan-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/11-perulangan-while/03-while-dan-list.py -------------------------------------------------------------------------------- /11-perulangan-while/04-while-dengan-inputan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/11-perulangan-while/04-while-dengan-inputan.py -------------------------------------------------------------------------------- /11-perulangan-while/05-while-continue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/11-perulangan-while/05-while-continue.py -------------------------------------------------------------------------------- /11-perulangan-while/06-while-break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/11-perulangan-while/06-while-break.py -------------------------------------------------------------------------------- /11-perulangan-while/07-while-else-break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/11-perulangan-while/07-while-else-break.py -------------------------------------------------------------------------------- /12-perulangan-bertingkat/01-alur-dasar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/12-perulangan-bertingkat/01-alur-dasar.py -------------------------------------------------------------------------------- /12-perulangan-bertingkat/02-dengan-while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/12-perulangan-bertingkat/02-dengan-while.py -------------------------------------------------------------------------------- /12-perulangan-bertingkat/03-binis-cintih-prigrim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/12-perulangan-bertingkat/03-binis-cintih-prigrim.py -------------------------------------------------------------------------------- /12-perulangan-bertingkat/04-bonus-pola-kotak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/12-perulangan-bertingkat/04-bonus-pola-kotak.py -------------------------------------------------------------------------------- /12-perulangan-bertingkat/05-bonus-pola-segitiga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/12-perulangan-bertingkat/05-bonus-pola-segitiga.py -------------------------------------------------------------------------------- /13-set/01-membuat-set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/13-set/01-membuat-set.py -------------------------------------------------------------------------------- /13-set/02-unchangable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/13-set/02-unchangable.py -------------------------------------------------------------------------------- /13-set/03-unik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/13-set/03-unik.py -------------------------------------------------------------------------------- /13-set/04-menambah-anggota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/13-set/04-menambah-anggota.py -------------------------------------------------------------------------------- /13-set/05-menghapus-anggota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/13-set/05-menghapus-anggota.py -------------------------------------------------------------------------------- /13-set/06-keanggotaan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/13-set/06-keanggotaan.py -------------------------------------------------------------------------------- /13-set/07-perulangan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/13-set/07-perulangan.py -------------------------------------------------------------------------------- /14-dictionary/01-perkenalan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/01-perkenalan.py -------------------------------------------------------------------------------- /14-dictionary/02-unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/02-unique.py -------------------------------------------------------------------------------- /14-dictionary/03-membuat-dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/03-membuat-dictionary.py -------------------------------------------------------------------------------- /14-dictionary/04-mengakses-dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/04-mengakses-dictionary.py -------------------------------------------------------------------------------- /14-dictionary/05-perulangan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/05-perulangan.py -------------------------------------------------------------------------------- /14-dictionary/06-mengubah-nilai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/06-mengubah-nilai.py -------------------------------------------------------------------------------- /14-dictionary/07-menambah-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/07-menambah-data.py -------------------------------------------------------------------------------- /14-dictionary/08-menghapus-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/08-menghapus-data.py -------------------------------------------------------------------------------- /14-dictionary/09-keanggotaan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/09-keanggotaan.py -------------------------------------------------------------------------------- /14-dictionary/10-panjang-dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/14-dictionary/10-panjang-dictionary.py -------------------------------------------------------------------------------- /15-fungsi/01-membuat-dan-memanggil-fungsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/15-fungsi/01-membuat-dan-memanggil-fungsi.py -------------------------------------------------------------------------------- /15-fungsi/02-parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/15-fungsi/02-parameter.py -------------------------------------------------------------------------------- /15-fungsi/03-parameter-wajib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/15-fungsi/03-parameter-wajib.py -------------------------------------------------------------------------------- /15-fungsi/04-parameter-optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/15-fungsi/04-parameter-optional.py -------------------------------------------------------------------------------- /15-fungsi/05-parameter-tidak-berurut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/15-fungsi/05-parameter-tidak-berurut.py -------------------------------------------------------------------------------- /15-fungsi/06-mengembalikan-nilai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/15-fungsi/06-mengembalikan-nilai.py -------------------------------------------------------------------------------- /15-fungsi/07-multi-return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/15-fungsi/07-multi-return.py -------------------------------------------------------------------------------- /15-fungsi/08-ruang-lingkup-variabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/15-fungsi/08-ruang-lingkup-variabel.py -------------------------------------------------------------------------------- /15-fungsi/09-docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/15-fungsi/09-docstring.py -------------------------------------------------------------------------------- /16-rekursif/01-hello-world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/16-rekursif/01-hello-world.py -------------------------------------------------------------------------------- /16-rekursif/02-satu-sampai-sepuluh-step-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/16-rekursif/02-satu-sampai-sepuluh-step-1.py -------------------------------------------------------------------------------- /16-rekursif/03-satu-sampai-sepuluh-step-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/16-rekursif/03-satu-sampai-sepuluh-step-2.py -------------------------------------------------------------------------------- /16-rekursif/04-satu-sampai-sepuluh-step-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/16-rekursif/04-satu-sampai-sepuluh-step-3.py -------------------------------------------------------------------------------- /16-rekursif/05-sepuluh-sampai-satu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/16-rekursif/05-sepuluh-sampai-satu.py -------------------------------------------------------------------------------- /16-rekursif/06-sepuluh-sampai-satu-ilustrasi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/16-rekursif/06-sepuluh-sampai-satu-ilustrasi.py -------------------------------------------------------------------------------- /16-rekursif/07-satu-sepuluh-satu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/16-rekursif/07-satu-sepuluh-satu.py -------------------------------------------------------------------------------- /17-pass/01-pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/17-pass/01-pass.py -------------------------------------------------------------------------------- /18-perbedaan-list-tuple-set/01-akses-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/18-perbedaan-list-tuple-set/01-akses-data.py -------------------------------------------------------------------------------- /18-perbedaan-list-tuple-set/02-edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/18-perbedaan-list-tuple-set/02-edit.py -------------------------------------------------------------------------------- /18-perbedaan-list-tuple-set/03-tambah-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/18-perbedaan-list-tuple-set/03-tambah-data.py -------------------------------------------------------------------------------- /18-perbedaan-list-tuple-set/04-hapus-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/18-perbedaan-list-tuple-set/04-hapus-data.py -------------------------------------------------------------------------------- /18-perbedaan-list-tuple-set/05-perulangan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/18-perbedaan-list-tuple-set/05-perulangan.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagongoding-com/python-dasar/HEAD/README.md --------------------------------------------------------------------------------