EdmontonPy
Inspired by the Python community, we hope to foster a strong, supportive, and proficient Python community in the Edmonton area.
edmontonpy.com
@edmontonpy
edmontonpy.slack.com
Please let the organizing committee if you're interested in sponsoring.
When standing as a group of people, always leave room for 1 person to join your group."
by Oliver Antoniu
Abid Raza
Eddie Antonio Santos
Eugene Chen
Rita Lester
Ken Hawrylak
Hameer memon
If you do have a job, and would like to advertise it here please let the organizing committee in the future
Lambda functions, how do they work?
>>> def squared(x):
... return x*x
>>> squared(5)
output: 25
>>> def get_full_name(first_name, last_name):
... return F'{first_name} {last_name}'
>>> get_full_name("Daniel", "Mouris")
output: "Daniel Mouris"
>>> squared = lambda x:x*x
>>> squared(4)
output: 16
>>> get_full_name = lambda first_name, last_name: F'{first_name} {last_name}'
>>> get_full_name("Mister", "McPythonFace")
output: "Mister McPythonFace"
>>> # You can immediately invoke this expression (js esque)
>>> # this is called immediately invoked function execution
>>> (lambda x, y: x+y)(3,2)
output: 5
Written normally
Written with lambdas
NEXT MEETUP ON AUGUST 12
By EdmontonPy
Inspired by the Python community, we hope to foster a strong, supportive, and proficient Python community in the Edmonton area.