slides available here: https://goo.gl/5HKE2J
Maëlys
(mah
-eh
-liss)
she/her pronouns
10 years professional programming experience
I like corgis
Quinn
he/him pronouns
loves ice cream
LGBTQ+ organizer, tech inept
Mado
they/them
Planning on making disability/activism-related software once I am powerful enough
Programmer in training
Serena
loves going out for ice cream
has been in tech a long time and is pretty much a tech granny by now
former pet photographer
We are meeting on aboriginal land that has been inhabited by Indigenous peoples from the beginning. This particular event is taking place on the traditional unceded territory of the Algonquin Anishnaabeg people.
I recognize and deeply appreciate their historic connection to this place. I also recognize the contributions that Métis, Inuit, and other Indigenous peoples have made, both in shaping and strengthening this community, and our province and country as a whole.
As a settler, I am grateful for the opportunity to meet here and thank all the generations of people who have taken care of this land for thousands of years.
I would encourage you not to dismiss this territorial acknowledgement, but understand it as part of a larger responsibility we all share not to be silent, for silence only protects the status quo.
And the status quo just won't do.
Source: Ontario Federation of Labour Aboriginal Circle
Programming Language
Readable by Humans
Machine Code
Readable by Computers
Software
Python:
Visual Studio Code:
Install the latest version of Python & Visual Studio Code!
Dismiss errors related to git.
Dismiss errors related to git.
exit()
print("hello")
print("hi there!")
print(1234)
print(1 + 1)
print(4.3 - 2.1)
print("hi there!")
print(1234)
print(1 + 1)
print(4.3 - 2.1)
abs(-5)
print(abs(-5))
len("the dog")
round(5.3)
max(1, 2, 3, 4)
message = "my name is Maëlys"
print(message)
a = 2
b = 6
c = a + b
print(c)
a = 2
b = 3
print(a * b)
a = 10
b = 7
print(a + b)
print(a - b)
print(a * b)
print(a / b)
print(a ** b)
print(a % b)
a = 10
b = 7
print(a + b)
print(a - b)
print(a * b)
print(a / b)
print(a ** b)
print(a % b)
a = 10
b = 7
# Adds two numbers
print(a + b)
# Subtracts two numbers
print(a - b)
# Multiplies two numbers
print(a * b)
a = 10
b = 7
# Adds two numbers
print(a + b)
# Subtracts two numbers
print(a - b)
# Multiplies two numbers
print(a * b)
Input:
1
3
Output:
4
Function to add numbers
def add_numbers(a, b):
# add numbers
c = a + b
# put the result in the output
return c
# Use the function
result = add_numbers(10, 2)
print(result)
def add_numbers(a, b):
# add numbers
c = a + b
# put the result in the output
return c
def add_numbers(a, b):
# add numbers
c = a + b
# put the result in the output
return c
# Use the function
result = add_numbers(10, 2)
print(result)
def add_numbers(a, b):
# add numbers
c = a + b
# put the result in the output
return c
def multiply(a, b, c):
# multiply numbers
output = a * b * c
return output
def multiply(a, b, c):
# multiply numbers
output = a * b * c
return output
# use the function
print(multiply(2, 3, 4))
slides available here: https://goo.gl/5HKE2J
my website:
www.maelys.bio