Skip to content

Commit 285837b

Browse files
authored
fixed age of Q6.
1 parent d3b47d3 commit 285837b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

chapters/en/module6.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -290,19 +290,19 @@ This one will run since `year_of_birth` is optional and will default to `None`.
290290

291291
</opt>
292292

293-
<opt text="<code>name_initials(last_name = 'Grant', year_of_birth = 1987, first_name = 'Cameron')</code>">
293+
<opt text="<code>name_initials(last_name = 'Grant', year_of_birth = 1977, first_name = 'Cameron')</code>">
294294

295295
Since we are defining our arguments with their names and values, this one will result in an output of `CG1987`.
296296

297297
</opt>
298298

299-
<opt text="<code>name_initials('Cameron', 1987, 'Grant')</code>" correct="true">
299+
<opt text="<code>name_initials('Cameron', 1977, 'Grant')</code>" correct="true">
300300

301301
This will result in an error since the argument values are not in the defined order and they are not defined with the argument names.
302302

303303
</opt>
304304

305-
<opt text="<code>name_initials('Cameron', 'Grant', 1987)</code>">
305+
<opt text="<code>name_initials('Cameron', 'Grant', 1977)</code>">
306306

307307
This function calls the arguments in the same order they were defined in. The output is `CG1987`.
308308

0 commit comments

Comments
 (0)