diff --git a/curriculum/challenges/english/blocks/lecture-introduction-to-python/67fe8597975ea634042cad8f.md b/curriculum/challenges/english/blocks/lecture-introduction-to-python/67fe8597975ea634042cad8f.md index e4132996d4c..212d40ec8f2 100644 --- a/curriculum/challenges/english/blocks/lecture-introduction-to-python/67fe8597975ea634042cad8f.md +++ b/curriculum/challenges/english/blocks/lecture-introduction-to-python/67fe8597975ea634042cad8f.md @@ -81,11 +81,11 @@ However, you shouldn't use comments to explain what your variable names mean. In ## --text-- -How do you declare a variable in Python? +Which of the following is the correct way to declare a variable in Python? ## --answers-- -Using the `let` keyword. +`let age = 25` ### --feedback-- @@ -93,7 +93,7 @@ Python doesn't require keywords for variable declaration. --- -Declaring with `const`. +`const age = 25` ### --feedback-- @@ -101,7 +101,7 @@ Python doesn't require keywords for variable declaration. --- -Using the `var` keyword. +`var age = 25` ### --feedback-- @@ -109,7 +109,7 @@ Python doesn't require keywords for variable declaration. --- -Assigning a value with the `=` operator. +`age = 25` ## --video-solution--