7 lines
99 B
Python
7 lines
99 B
Python
# Tuliskan kode program dibawah ini
|
|
x=5
|
|
y=5.1
|
|
z="5"
|
|
print (type(x))
|
|
print (type(y))
|
|
print (type(z)) |