קוד בסיסי להכרת סוגי משתנים:
a=432
b=213.452
c=[5,3,7,3]
d=”asdfjklsdjflkjsdlfjsdkl”
print(“Variable a= “,a,type(a))
print(“Variable b= “,b,type(b))
print(“Variable c= “,c,type(c))
print(“Variable d= “,d,type(d))
קוד בסיסי להכרת סוגי משתנים:
a=432
b=213.452
c=[5,3,7,3]
d=”asdfjklsdjflkjsdlfjsdkl”
print(“Variable a= “,a,type(a))
print(“Variable b= “,b,type(b))
print(“Variable c= “,c,type(c))
print(“Variable d= “,d,type(d))