Edmonton.py

The Edmonton Python User Group

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."

The Pac-Man Rule

Talks

Permutations and Combinations with Itertools

Abram Hindle

 

Something

Andrew Crouse

 

Events

Global

Sep 22-27, San Diego

  • PyCon Canada 2019

Nov 16-17 (tentative), Toronto
A few of us are going and its' going to be fun

News

Jobs

Levven Electronics Ltd.

Senior Software Developer ($107,000 - $155,000)

Jobs?

If you do have a job, and would like to advertise it here please let the organizing committee in the future

Articles

Python Tip

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

September 2019

By amcrouse

September 2019

  • 389