Those answers are hard to search for, but next time it would be better if you mentioned where you looked for before.
What is a default-parameter
When a function has "standard" values for some parameters. Example:
def add_to_list(list, index=0):
You can call this function by passing just a list, or both a list and an index. If you don't provide an index, it defaults to 0.
add_to_list(my_list) # index = 0
add_to_list(my_list, 5) # index = 5
What happens if you forget to call out a function? - nothing i
suppose?
You are right, nothing happens. A function definition (def function_name(params):) is just that: a definition. Until you call it, the code inside is not used. I'm not sure if this is what you had in mind, please tell me if it didn't make sense.
How do you see if a function is a recursive function?
Recursive functions are functions that call themselves.
def find_item(list, item):
if list[0] == item:
return 0
else:
return find_item(list[1:], item) + 1
This is a recursive search because find_item is called inside the function code. Normally to see if a function is recursive you just look for its name inside its code, but this gets tricky with indirect recursion (a calls b which then calls a) or giving a new name for the function (new_find_item = find_item).
Which one of the demands "not" or "==" has the highest priority?
not has higher priority. value_1 == not value_2 is parsed as (value_1) == (not (value_ 2))
What is the difference between "and" and "or"?
Both are binary logical operators, taking two parameters and returning a boolean value. and returns True if both parameters are True, or returns True if any of the parameters are True.
print True and False
# This prints False
print True or False
# This prints True
and/orcan easily be answered by looking at your questions themselves. "Which one of the demands "not" or "==" has the highest priority?". How isorused there?. "What is the difference between "and" and "or"?" How isandused there? Question answered. – F3AR3DLEGEND Jan 21 at 21:14