30/09/2018, 19:11
có ai giải thích giùm mình với được k?
mình k hiểu chỗ đoạn này :
age = add(30, 5)
height = subtract(78, 4)
weight = multiply(90, 2)
iq = divide(100, 2)
print "Age : %d, Height: %d, Weight: %d, IQ: %d" % (age, height, weight , iq)
# A puzzle for the extra credit, type it in anyway
print "Here is a puzzle."
what = add(age, subtract(height, multiply(weight, divide(iq, 2))))
ai giải thích giùm với
def add(a, b):
print "ADDING %d + %d" % (a, b)
return a + b
def subtract (a, b):
print "SUBTRACTING %d - %d" % (a, b)
return a - b
def multiply(a, b):
print "MULTIPLYING %d * %d" % (a, b)
return a * b
def divide(a, b):
print "DEVIDING %d / %d" % (a, b)
return a / b
print "Let's do some math with just functions!"
age = add(30, 5)
height = subtract(78, 4)
weight = multiply(90, 2)
iq = divide(100, 2)
print "Age : %d, Height: %d, Weight: %d, IQ: %d" % (age, height, weight , iq)
# A puzzle for the extra credit, type it in anyway
print "Here is a puzzle."
what = add(age, subtract(height, multiply(weight, divide(iq, 2))))
print "That becomes: ", what, "Can you do it by hand?"
Bài liên quan
tính từ trong dấu ngoặc trong cùng ra.
Vd:
1/ iq/2 = a
2/ weight*(a) =b
3/ height - b = c
=> what = add(age,c)
Có gì sai sót xin góp ý dùm mình
Hãy theo đuổi đam mê đi bạn, mình cũng đang học Python
@T97 Chào anh Em cũng đang học Python, nhưng còn gà mờ lắm. Nếu được thì anh có thể giúp em đc ko ạ ^^ Nhiều lúc bí mà ko biết tìm ai để hỏi :)))
Cái này là code trong cuốn Learn Python The Hard Way của Zed Shaw nè.