“Casting di Python” Kode Jawaban

Casting di Python

x = int(1)   # x will be 1
y = int(2.8) # y will be 2
z = int("3") # z will be 3

x = float(1)     # x will be 1.0
y = float(2.8)   # y will be 2.8
z = float("3")   # z will be 3.0
w = float("4.2") # w will be 4.2

x = str("s1") # x will be 's1'
y = str(2)    # y will be '2'
z = str(3.0)  # z will be '3.0'
Asif Iqbal Paracha

Casting di Python

x = "3"
int(x)

y = "2.6"
float(y)

z = "1j"
complex(z)

print(typeof(x))
# Int
# float
# complex
The Cat Coder

Casting tipe Python

x = int(1.1)
y = str(1.1)
z = float(1.1)
print(x)
print(y)
print(z)
Javasper

Casting tipe variabel python

x = str("Jack");
y = int(111)
print(x)
print(y)
Javasper

Jawaban yang mirip dengan “Casting di Python”

Pertanyaan yang mirip dengan “Casting di Python”

Lebih banyak jawaban terkait untuk “Casting di Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya