Get started learning Python with DataCamp's free Intro to Python tutorial. Learn Data Science by completing interactive coding challenges and watching videos by expert instructors. Start Now!

This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join 11 million other learners and get started learning Python for data science today!

Good news! You can save 25% off your Datacamp annual subscription with the code LEARNPYTHON23ALE25 - Click here to redeem your discount

Hàm một phần


You can create partial functions in python using the partial function from the functools library.

Partial functions cho phép tạo ra một hàm với số lượng tham số ít hơn và các giá trị cố định được thiết lập cho hàm giới hạn hơn.

Import cần thiết:

This code will return 8.

Một lưu ý quan trọng: các giá trị mặc định sẽ bắt đầu thay thế các biến từ bên trái. Số 2 sẽ thay thế x. y sẽ bằng 4 khi dbl(4) được gọi. Đây không có sự khác biệt trong ví dụ này, nhưng nó có trong ví dụ dưới đây.

Exercise

Chỉnh sửa hàm cung cấp bằng cách gọi partial() và thay thế ba biến đầu tiên trong func(). Sau đó in ra với hàm partial mới sử dụng chỉ một biến đầu vào để kết quả bằng 60.

#Following is the exercise, function provided: from functools import partial def func(u, v, w, x): return u*4 + v*3 + w*2 + x #Enter your code here to create and print with your partial function from functools import partial def func(u, v, w, x): return u*4 + v*3 + w*2 + x p = partial(func,5,6,7) print(p(8)) #test_object('p') test_output_contains('60') success_msg('Good job!')

This site is generously supported by DataCamp. DataCamp offers online interactive Python Tutorials for Data Science. Join over a million other learners and get started learning Python for data science today!

Previous Tutorial Next Tutorial Take the Test
Copyright © learnpython.org. Read our Terms of Use and Privacy Policy