gmana nichh
1 jempol
msyarifr
213
24
·
5 tahun, 3 bulan yang lalu
·
1 jempol
hai coder @ daffaraihan coba code berikut; from datetime import datetime kini = datetime.now() jam = kini.hour menit = kini.minute detik = kini.second print "jam:menit:detik".format(kini.hour, kini.minute, kini.second)
ralig
50
1
·
5 tahun, 2 bulan yang lalu
·
1 jempol
untuk baris ke 6 seharusnya print "jam:menit:detik".format(0,1,2)
Don_Munson
0
0
·
2 tahun, 9 bulan yang lalu
·
0 jempol
Great code, the author is handsome! It seemed to me that you have it too detailed and from this large in size, I think you can reduce it at least twice if you use pseudo-classes and identifiers, for example, I generally recommend watching a video on Instagram on how to shorten any code by almost five times and not cut it its functionality, unfortunately I don't remember the name of this author, but I do remember that it had posted by account that have about 42 thousand of followers! I am sure that the owner of this account always use the help of https://viplikes.net/ to quickly gain the number of profile followers.
menik
51
1
·
2 tahun, 3 bulan yang lalu
·
0 jempol
@ralig mohon bantuannya from datetime import datetime kini = datetime.now() jam = kini.hour() menit = kini.menit() detik = kini.second() print "jam:menit:detik" .format(0,1,2)
msyarifr
213
24
·
1 tahun, 7 bulan yang lalu
·
0 jempol
revisi gan, ternyata ada dimateri sebelumnya. saya juga kurang tahu kenapa script saya dulu lolos, kayaknya ada bug. print "{0}:{1}:{2}".format(kini.hour, kini.minute, kini.second)
msyarifr
213
24
·
1 tahun, 7 bulan yang lalu
·
0 jempol
Pada method format() diatas, saya langsung memanggil masing2 properti yang diperlukan dari variabel kini, dan saya baru saja tahu kalau ternyata kita bisa memanggil masing2 nama variabel nya saja sperti berikut. format(jam, menit, detik) kemudian saya juga baru tau jika angka pada masing2 placeholder {} bisa saja kita kosongi, angka tersebut mewakili sebuah value yang ada dalam method format(). Kalian bisa mencoba nya sendiri dengan mengacak urutan angka pada placeholder {} tersebut, dan lihat apa yang akan terjadi.