Quick actions

cmd+k|ctrl+k

Navigation

Languages

Methods and Functions

Snippet info

Language

Python

Visibility

public

Author

fpuleano

Created

2022-03-03T17:30:55.87193Z

Updated

2022-03-04T23:09:32.176688Z

# Methods and Functions
# Python built in functions: Print, List, Max, Min, input...more
# We also learned about custom fuctions we can create like...def some_function():
# Then we call the fuction
# some_function()

# Then we learned about methods ...'hello'.capitalize()... whatever is to the left of the dot owns the method...methods are built-in objects that have methods
# such as strings, dictionaries, sets, tuples
# Both Methods and Functions allow us to take actions on our data types...to have our programs do something
INFO