- This event has passed.
7:00 PM – Intro to Python – Sebastian
January 13 @ 7:00 pm - 8:00 pm
Today we did
- Learn more about functions
- Functions can sometimes take parameters
- Functions can sometimes return output
- You need to call a function for it to do anything
- Monday 7:00PM class code:
https://drive.google.com/drive/folders/1Nm9mpaXjjpK8akSC1v8YpnGMTX-FpTyD?usp=sharing - AYC Logic’s observed holidays: https://www.ayclogic.com/observed-holidays/
- In case you need anything, feel free to email me at sebastian@ayclogic.com
Homework
- Please submit your homework into your Google Drive
- Homework: Write the following code & submit it in a file called “JAN13_HW”
- Create a function, “combine_words”, with 3 parameters (called param1, param2, param3)
- Inside the function, print the combination of all three parameters.
- Call the function like this: “combine_words(‘Hello ‘, ‘Mr. ‘, ‘Sebastian.’)” .
- This will print ‘Hello Mr. Gamas’ to the shell.