edmontonpy.com
@edmontonpy
devedmonton.slack.com #meetup-edmontonpy
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."
Abram Hindle
Andrew Crouse
Levven Electronics Ltd.
Senior Software Developer ($107,000 - $155,000)
If you do have a job, and would like to advertise it here please let the organizing committee in the future
Join the Edmonton Python meetup slack, ask questions and build your network.
def print_colors(colors=[]):
colors.append('Black')
print(colors)
print_colors(['Orange', 'Red', 'Green'])
print_colors()
print_colors()
print_colors()
# Instead
def print_colors(colors=None):
if colors is None:
colors = []
colors.append('Black')
print(colors)
NEXT MEETUP ON OCTOBER 14TH