argumento

How to fix this error "Cannot convert from 'int'to' char []'

Why is this error presented? I believe the logic is right.

What is the difference between parameter and argument?

I have always used the terms "parameter "and" argument " as if they were synonyms: what is passed to a function and/or what t ... alized that is not the case (in English we also have "parameter" and "argument"). What is the correct way to use these terms?

Using arguments in a function from another function

I have a text document with the following format: word_1 word_2 word_3 word_4 word_5 word_6 For each line of this text do ... array.append(x) def my_function("array[0][0]","array[0][1]","array[0][2]") How can I improve my code to do what I need?

List as function input

In Python 3.7 can items in a list be arguments to a function? def media(x,y,z): lista = [7,8,9]