Examples with "docstrings" and their translation in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Documentatie strings (of docstrings) worden gebruikt om makkelijk toegankelijke documentatie te maken.
Documentation strings (or docstrings) are used to create easily-accessible documentation.
De meeste Python programmeurs zullen deze soort van commentaar alleen gebruiken als docstrings.
Andere resultaten
Voeg een docstring toe aan de klasse die uitlegt wat het algoritme doet.
Add a docstring to the class that explains what the algorithm does.
Deze commentaart is afgebakend met drie dubbele quotes en wordt de docstring genoemd.
This comment is delimited using three double quotes, and is called a docstring.
Men kan een docstring toevoegen aan een functie, klasse of module door een string toe te voegen als het eerste geïndenteerde statement.
You can add a docstring to a function, class, or module by adding a string as the first indented statement.
De eerste regel is de opmerking, ook wel de "docstring" genoemd, gevolgd door het commando pass.
The first is the comment also called a docstring followed by the command pass.
Voorbeeld Opmerking: Indien je onderstaande testvoorbeelden opneemt in een docstring, let er dan op dat het enkele aanhalingsteken dat gebruikt wordt in de string die als tweede argument wordt doorgegeven aan de initialisatiemethode van de klasse Bifid, een dubbele escape moet meekrijgen.
Example Remark: If you use the test examples below for a docstring, you should know that a single quotation mark that is used in the string that was given as second argument to the initializing method of the class Bifid, must get a double escape.