From cfbc57a08dff2655c6720fff39fc398f5d738ad3 Mon Sep 17 00:00:00 2001 From: Diego Riano Date: Thu, 31 Aug 2023 13:53:32 -0300 Subject: [PATCH] fix language --- problemsets/Python_01_problemset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problemsets/Python_01_problemset.md b/problemsets/Python_01_problemset.md index 5c1ef08..2dbdb10 100644 --- a/problemsets/Python_01_problemset.md +++ b/problemsets/Python_01_problemset.md @@ -44,7 +44,7 @@ Python 1 Problem Set ``` >>> Remember, write a bit, then run your code, write some more, then run again. This makes code easier to debug. -4. Use `sys.argv` (make sure to import sys!!!) to retrieve your name, favorite color, favorite activity, and favorite animal from the command line. Remember to check out the [example in the notes](https://github.com/prog4biol/pfb2019#command-line-parameters-a-special-built-in-list). Print all the variables in one print statement. +4. Use `sys.argv` (make sure to import sys!!!) to retrieve your name, favorite color, favorite activity, and favorite animal from the command line. Remember to check out the [example in the notes](https://github.com//labbces/cen0336/pfb.md/#parĂ¢metros-de-linha-de-comando-uma-lista-especial-de-parĂ¢metros). Print all the variables in one print statement. - try using commas to separate your print arguments. - try using '+' to separate your print arguments.