7 lines
132 B
Python
7 lines
132 B
Python
# Tuliskan kode program dibawah ini
|
|
buah = "Mangga"
|
|
jumlah = 10
|
|
berat = 1.6
|
|
print(type(buah))
|
|
print(type(jumlah))
|
|
print(type(berat)) |