Archived
What can be said about the following statement?
-3
Community Evaluations
Raymond
17/08/2023
Je dirai que ces réponses à la questions sont TROP SUBJECTIVES , dépendent de l'opinion de chacun.
"2) Il manque la documentation" . En mĂȘme temps le code concis, on comprend ce que la mĂ©thode fait.
"3) Les arguments ne sont pas bien nommĂ©s" . Encore trop subjective. La mĂ©thode n'est mĂȘme pas bien nommĂ©e.
"4) Ce code est interprété sans problÚme par Python" . C'est un fait pas une opinion . La seule que j'ai cochée correcte.
Auteur anonyme
20/03/2023
ils doivent ĂȘtre explicites, en lisant l'argument il faut comprendre de quoi il s'agit
Auteur anonyme
25/04/2023
Les arguments ne sont pas bien nommés car en poo python dans une methode doit : avoir le "self" ex ;def maMethode(self,argument1, argument2) ou bien "cls" ex def maMethode(cls,argument1, argument2) )
Auteur anonyme
11/05/2023
Les arguments ne sont pas bien nommés car le premier argument d'une méthode non statique représente l'instance de l'objet qui l'invoque. Et cette instance est nommée "self" par convention. Ceci dit, la question est "les arguments ne sont pas bien nommés" (au pluriel) alors qu'en réalité il n'y a que le premier qui n'est pas bien nommé.
Similar QuestionsMore questions about Python
5
Write a Python program to open a file in binary mode and write a string to it.5
Change the value of a nested list element in Python4
Write a Python code that will wait for 40 seconds.4
Why is the output of the following code undefined?
```
def f(n):
return n + 1
f(n)
```4
In Python, what is the output of the following code? `valueA = 10; valueB = 10; valueA is valueB`