From 0a765be6fee18da825443c56dc2ca484c5641e05 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:45 +0100 Subject: [PATCH 001/130] New translations meta.yml (Romanian) --- ro-RO/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ro-RO/meta.yml diff --git a/ro-RO/meta.yml b/ro-RO/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/ro-RO/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From a8f1c49011359f96660cb6116cddfe6e49061dc3 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:46 +0100 Subject: [PATCH 002/130] New translations .keep (Russian) --- ru-RU/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 ru-RU/solutions/.keep diff --git a/ru-RU/solutions/.keep b/ru-RU/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ru-RU/solutions/.keep @@ -0,0 +1 @@ + From 75dd08406045d41cff8e2ff270ab39dcf1fbe273 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:47 +0100 Subject: [PATCH 003/130] New translations .keep (Turkish) --- tr-TR/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 tr-TR/solutions/.keep diff --git a/tr-TR/solutions/.keep b/tr-TR/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tr-TR/solutions/.keep @@ -0,0 +1 @@ + From 2e508087697bb039faff64a4e3fac4264f889e91 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:48 +0100 Subject: [PATCH 004/130] New translations meta.yml (Turkish) --- tr-TR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tr-TR/meta.yml diff --git a/tr-TR/meta.yml b/tr-TR/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/tr-TR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From bdd7d040a6fbaba0b105c877d8dc0d7fcbc76367 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:50 +0100 Subject: [PATCH 005/130] New translations step_1.md (Swedish) --- sv-SE/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 sv-SE/step_1.md diff --git a/sv-SE/step_1.md b/sv-SE/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/sv-SE/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 2539c14ffeaeca358fbd201babb1d6468e351d09 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:51 +0100 Subject: [PATCH 006/130] New translations .keep (Swedish) --- sv-SE/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 sv-SE/solutions/.keep diff --git a/sv-SE/solutions/.keep b/sv-SE/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/sv-SE/solutions/.keep @@ -0,0 +1 @@ + From 21bdb993502a158235948a9dba34dd739af7ad81 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:53 +0100 Subject: [PATCH 007/130] New translations meta.yml (Swedish) --- sv-SE/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sv-SE/meta.yml diff --git a/sv-SE/meta.yml b/sv-SE/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/sv-SE/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From bdca61bb7bd15fc77ab4d8f8d990d6b60b4a60d5 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:54 +0100 Subject: [PATCH 008/130] New translations step_1.md (Serbian (Cyrillic)) --- sr-SP/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 sr-SP/step_1.md diff --git a/sr-SP/step_1.md b/sr-SP/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/sr-SP/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From de35b809909320788846c6c2cd6032a332fa384e Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:55 +0100 Subject: [PATCH 009/130] New translations .keep (Serbian (Cyrillic)) --- sr-SP/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 sr-SP/solutions/.keep diff --git a/sr-SP/solutions/.keep b/sr-SP/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/sr-SP/solutions/.keep @@ -0,0 +1 @@ + From 3bf88bad5b811b905625d61529175b444750ecbe Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:56 +0100 Subject: [PATCH 010/130] New translations meta.yml (Serbian (Cyrillic)) --- sr-SP/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sr-SP/meta.yml diff --git a/sr-SP/meta.yml b/sr-SP/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/sr-SP/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 87eb0956d79c9fcfdda8cd81c1f03c8eda9279e2 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:57 +0100 Subject: [PATCH 011/130] New translations step_1.md (Russian) --- ru-RU/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ru-RU/step_1.md diff --git a/ru-RU/step_1.md b/ru-RU/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/ru-RU/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From bf9e74e6625d962dcb437a40ad150ff3cc11a342 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:54:59 +0100 Subject: [PATCH 012/130] New translations meta.yml (Russian) --- ru-RU/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ru-RU/meta.yml diff --git a/ru-RU/meta.yml b/ru-RU/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/ru-RU/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 0d09db283c8cd59fc02d417ce79a3799412de744 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:00 +0100 Subject: [PATCH 013/130] New translations meta.yml (Ukrainian) --- uk-UA/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 uk-UA/meta.yml diff --git a/uk-UA/meta.yml b/uk-UA/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/uk-UA/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 7e7adc4c8c7e33ad1ac9a21937e046de826bab52 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:02 +0100 Subject: [PATCH 014/130] New translations step_1.md (Portuguese) --- pt-PT/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pt-PT/step_1.md diff --git a/pt-PT/step_1.md b/pt-PT/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/pt-PT/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 5d4ab70e3cdca0382ef23163f7d860eefc0cc6c3 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:03 +0100 Subject: [PATCH 015/130] New translations .keep (Portuguese) --- pt-PT/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 pt-PT/solutions/.keep diff --git a/pt-PT/solutions/.keep b/pt-PT/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/pt-PT/solutions/.keep @@ -0,0 +1 @@ + From 5311d2199794158b29f8d3774159fed09c5f5a68 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:05 +0100 Subject: [PATCH 016/130] New translations meta.yml (Portuguese) --- pt-PT/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pt-PT/meta.yml diff --git a/pt-PT/meta.yml b/pt-PT/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/pt-PT/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 2ceba3edd40c8ee8bd333debfef9da74d85089ef Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:06 +0100 Subject: [PATCH 017/130] New translations step_1.md (Polish) --- pl-PL/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pl-PL/step_1.md diff --git a/pl-PL/step_1.md b/pl-PL/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/pl-PL/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From aefc6b8e7f3b32a2fe5412e2d1326a78696d19bc Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:07 +0100 Subject: [PATCH 018/130] New translations .keep (Polish) --- pl-PL/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 pl-PL/solutions/.keep diff --git a/pl-PL/solutions/.keep b/pl-PL/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/pl-PL/solutions/.keep @@ -0,0 +1 @@ + From 74d9d1bf4f0619c996826dc83f7148314a7788e0 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:08 +0100 Subject: [PATCH 019/130] New translations meta.yml (Polish) --- pl-PL/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pl-PL/meta.yml diff --git a/pl-PL/meta.yml b/pl-PL/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/pl-PL/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 19da03eb52f82393ffb696976bbc6efa94e1d6ba Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:10 +0100 Subject: [PATCH 020/130] New translations step_1.md (Norwegian) --- no-NO/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 no-NO/step_1.md diff --git a/no-NO/step_1.md b/no-NO/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/no-NO/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From a7bf03b3f48c591f7d2766256eb96bc8413bc024 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:11 +0100 Subject: [PATCH 021/130] New translations .keep (Norwegian) --- no-NO/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 no-NO/solutions/.keep diff --git a/no-NO/solutions/.keep b/no-NO/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/no-NO/solutions/.keep @@ -0,0 +1 @@ + From 1f683d772c7d61432ff43e944bde1cf987e6a1e5 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:13 +0100 Subject: [PATCH 022/130] New translations meta.yml (Norwegian) --- no-NO/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 no-NO/meta.yml diff --git a/no-NO/meta.yml b/no-NO/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/no-NO/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From f5d766305dd71fc458179e3d3feb5d97350d1a0a Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:14 +0100 Subject: [PATCH 023/130] New translations step_1.md (Turkish) --- tr-TR/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tr-TR/step_1.md diff --git a/tr-TR/step_1.md b/tr-TR/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/tr-TR/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 23897c6289106d1032d188fec6c4b1fb8bd95363 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:15 +0100 Subject: [PATCH 024/130] New translations .keep (Ukrainian) --- uk-UA/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 uk-UA/solutions/.keep diff --git a/uk-UA/solutions/.keep b/uk-UA/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/uk-UA/solutions/.keep @@ -0,0 +1 @@ + From 8d85a45ba095148f6608f5a814354ab59e6e3ea2 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:16 +0100 Subject: [PATCH 025/130] New translations .keep (Dutch) --- nl-NL/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 nl-NL/solutions/.keep diff --git a/nl-NL/solutions/.keep b/nl-NL/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/nl-NL/solutions/.keep @@ -0,0 +1 @@ + From 8c354d9837f07d776a8559cc92813449cccab4ac Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:17 +0100 Subject: [PATCH 026/130] New translations .keep (Vietnamese) --- vi-VN/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 vi-VN/solutions/.keep diff --git a/vi-VN/solutions/.keep b/vi-VN/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/vi-VN/solutions/.keep @@ -0,0 +1 @@ + From 0afb86223644c52382c9b34f24af83810558ef0d Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:18 +0100 Subject: [PATCH 027/130] New translations .keep (Spanish, Latin America) --- es-LA/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 es-LA/solutions/.keep diff --git a/es-LA/solutions/.keep b/es-LA/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/es-LA/solutions/.keep @@ -0,0 +1 @@ + From bcfedaee1ef5375d03765b6186ab46c2faad0781 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:20 +0100 Subject: [PATCH 028/130] New translations meta.yml (Spanish, Latin America) --- es-LA/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 es-LA/meta.yml diff --git a/es-LA/meta.yml b/es-LA/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/es-LA/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From ec9c211d9269d8da8e514ddb122c88a2af755d8c Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:21 +0100 Subject: [PATCH 029/130] New translations step_1.md (Hindi) --- hi-IN/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 hi-IN/step_1.md diff --git a/hi-IN/step_1.md b/hi-IN/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/hi-IN/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From c33a166a528b36900260995c655627b8e5d221b6 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:22 +0100 Subject: [PATCH 030/130] New translations .keep (Hindi) --- hi-IN/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 hi-IN/solutions/.keep diff --git a/hi-IN/solutions/.keep b/hi-IN/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/hi-IN/solutions/.keep @@ -0,0 +1 @@ + From d0a2f928c930874fd89b6ed70ff8c36f010eadc1 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:24 +0100 Subject: [PATCH 031/130] New translations meta.yml (Hindi) --- hi-IN/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hi-IN/meta.yml diff --git a/hi-IN/meta.yml b/hi-IN/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/hi-IN/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 049afcd1c393554b854899c20559c78705315d46 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:25 +0100 Subject: [PATCH 032/130] New translations step_1.md (Portuguese, Brazilian) --- pt-BR/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pt-BR/step_1.md diff --git a/pt-BR/step_1.md b/pt-BR/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/pt-BR/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From abe2d51ce6a2c35a985f084b8063088ef04ece77 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:26 +0100 Subject: [PATCH 033/130] New translations .keep (Portuguese, Brazilian) --- pt-BR/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 pt-BR/solutions/.keep diff --git a/pt-BR/solutions/.keep b/pt-BR/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/pt-BR/solutions/.keep @@ -0,0 +1 @@ + From 59c9e6be51b77022f92708e154547e2973e25f1c Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:27 +0100 Subject: [PATCH 034/130] New translations meta.yml (Portuguese, Brazilian) --- pt-BR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pt-BR/meta.yml diff --git a/pt-BR/meta.yml b/pt-BR/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/pt-BR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From dcbdb40437857c2e091ff3d8279c0390dcca9e35 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:29 +0100 Subject: [PATCH 035/130] New translations step_1.md (Vietnamese) --- vi-VN/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 vi-VN/step_1.md diff --git a/vi-VN/step_1.md b/vi-VN/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/vi-VN/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 5088500e9d8b6db500da3838167267288f43f5c1 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:30 +0100 Subject: [PATCH 036/130] New translations meta.yml (Vietnamese) --- vi-VN/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 vi-VN/meta.yml diff --git a/vi-VN/meta.yml b/vi-VN/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/vi-VN/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From d7c60aa0504bceea4385edd0f6ac35f46668d5db Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:32 +0100 Subject: [PATCH 037/130] New translations step_1.md (Ukrainian) --- uk-UA/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 uk-UA/step_1.md diff --git a/uk-UA/step_1.md b/uk-UA/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/uk-UA/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 377f58c95e08a8a9a51c50bb8f371c57ae05ea58 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:34 +0100 Subject: [PATCH 038/130] New translations step_1.md (English) --- en-US/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 en-US/step_1.md diff --git a/en-US/step_1.md b/en-US/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/en-US/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From d685bc9e27b2f0644d93de75f75de3e390256902 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:35 +0100 Subject: [PATCH 039/130] New translations .keep (English) --- en-US/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 en-US/solutions/.keep diff --git a/en-US/solutions/.keep b/en-US/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/en-US/solutions/.keep @@ -0,0 +1 @@ + From cd2d046b2a94a687b625e613c8ebab89fb40a330 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:36 +0100 Subject: [PATCH 040/130] New translations meta.yml (English) --- en-US/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 en-US/meta.yml diff --git a/en-US/meta.yml b/en-US/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/en-US/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From a388909c3d6f66821e77917a0fbe0cafd09c3f36 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:37 +0100 Subject: [PATCH 041/130] New translations step_1.md (Chinese Traditional) --- zh-TW/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 zh-TW/step_1.md diff --git a/zh-TW/step_1.md b/zh-TW/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/zh-TW/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 0a439d96921538c670d85c63a5968905d26b50b2 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:39 +0100 Subject: [PATCH 042/130] New translations .keep (Chinese Traditional) --- zh-TW/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 zh-TW/solutions/.keep diff --git a/zh-TW/solutions/.keep b/zh-TW/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/zh-TW/solutions/.keep @@ -0,0 +1 @@ + From 7c4eda5df1e0932d570cb43bb3d721835a27659b Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:40 +0100 Subject: [PATCH 043/130] New translations meta.yml (Chinese Traditional) --- zh-TW/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 zh-TW/meta.yml diff --git a/zh-TW/meta.yml b/zh-TW/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/zh-TW/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 819698e74ab413dc49e9d7c0ed9a6f69a9af0ddd Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:42 +0100 Subject: [PATCH 044/130] New translations step_1.md (Chinese Simplified) --- zh-CN/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 zh-CN/step_1.md diff --git a/zh-CN/step_1.md b/zh-CN/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/zh-CN/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 65b46b17f3ee10ba543e22ad178dcc6a80afc4ff Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:43 +0100 Subject: [PATCH 045/130] New translations .keep (Chinese Simplified) --- zh-CN/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 zh-CN/solutions/.keep diff --git a/zh-CN/solutions/.keep b/zh-CN/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/zh-CN/solutions/.keep @@ -0,0 +1 @@ + From 5e2a512525a07b887cd646dddcf864160d190467 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:44 +0100 Subject: [PATCH 046/130] New translations meta.yml (Chinese Simplified) --- zh-CN/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 zh-CN/meta.yml diff --git a/zh-CN/meta.yml b/zh-CN/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/zh-CN/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 91b5a489eab94320009d758a1bac23462a5200d0 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:45 +0100 Subject: [PATCH 047/130] New translations step_1.md (Dutch) --- nl-NL/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 nl-NL/step_1.md diff --git a/nl-NL/step_1.md b/nl-NL/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/nl-NL/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 92c664cde8ade05421e4978371aea5d136453767 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:46 +0100 Subject: [PATCH 048/130] New translations meta.yml (Dutch) --- nl-NL/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nl-NL/meta.yml diff --git a/nl-NL/meta.yml b/nl-NL/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/nl-NL/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 64b68838eb1e03de92c86dc364b3521e8ddcfe36 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:48 +0100 Subject: [PATCH 049/130] New translations .keep (Romanian) --- ro-RO/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 ro-RO/solutions/.keep diff --git a/ro-RO/solutions/.keep b/ro-RO/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ro-RO/solutions/.keep @@ -0,0 +1 @@ + From 122b0c07416a957183b66f636f67ff8cff052a11 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:49 +0100 Subject: [PATCH 050/130] New translations meta.yml (Arabic) --- ar-SA/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ar-SA/meta.yml diff --git a/ar-SA/meta.yml b/ar-SA/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/ar-SA/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From b419a7c292903044cd72a05e5cf2401cd3910dd7 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:50 +0100 Subject: [PATCH 051/130] New translations meta.yml (Danish) --- da-DK/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 da-DK/meta.yml diff --git a/da-DK/meta.yml b/da-DK/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/da-DK/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From e16dfad283d63e46e032a3d7e6183f111bb79600 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:51 +0100 Subject: [PATCH 052/130] New translations step_1.md (Czech) --- cs-CZ/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 cs-CZ/step_1.md diff --git a/cs-CZ/step_1.md b/cs-CZ/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/cs-CZ/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From efb41f9e0bb5d3519a6b54c78c2d60193288af5f Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:52 +0100 Subject: [PATCH 053/130] New translations .keep (Czech) --- cs-CZ/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 cs-CZ/solutions/.keep diff --git a/cs-CZ/solutions/.keep b/cs-CZ/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/cs-CZ/solutions/.keep @@ -0,0 +1 @@ + From e44f82c6cc45532d2045c784d648ce65fcf84d45 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:54 +0100 Subject: [PATCH 054/130] New translations meta.yml (Czech) --- cs-CZ/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cs-CZ/meta.yml diff --git a/cs-CZ/meta.yml b/cs-CZ/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/cs-CZ/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 56f4230a340de5fc685516d4cd31175584b8d859 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:55 +0100 Subject: [PATCH 055/130] New translations step_1.md (Catalan) --- ca-ES/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ca-ES/step_1.md diff --git a/ca-ES/step_1.md b/ca-ES/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/ca-ES/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 79f991250b48f1c37cd2bba5ea76c7dfc3589cc6 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:56 +0100 Subject: [PATCH 056/130] New translations .keep (Catalan) --- ca-ES/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 ca-ES/solutions/.keep diff --git a/ca-ES/solutions/.keep b/ca-ES/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ca-ES/solutions/.keep @@ -0,0 +1 @@ + From 823e1c104f639737a4e9f2cca5f8ef24af01616b Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:58 +0100 Subject: [PATCH 057/130] New translations meta.yml (Catalan) --- ca-ES/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ca-ES/meta.yml diff --git a/ca-ES/meta.yml b/ca-ES/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/ca-ES/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 9b5e8c551f6a1ba5f5ee9ee5663571ddecd41437 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:55:59 +0100 Subject: [PATCH 058/130] New translations step_1.md (Arabic) --- ar-SA/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ar-SA/step_1.md diff --git a/ar-SA/step_1.md b/ar-SA/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/ar-SA/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From aeef527f067f7afb0f953294fa7f87ba6b31552b Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:00 +0100 Subject: [PATCH 059/130] New translations .keep (Arabic) --- ar-SA/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 ar-SA/solutions/.keep diff --git a/ar-SA/solutions/.keep b/ar-SA/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ar-SA/solutions/.keep @@ -0,0 +1 @@ + From 45e6a0b8c1f007037508a54eac0c81af2fa2de06 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:01 +0100 Subject: [PATCH 060/130] New translations step_1.md (Afrikaans) --- af-ZA/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 af-ZA/step_1.md diff --git a/af-ZA/step_1.md b/af-ZA/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/af-ZA/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From d93fa82c55aed4aac9b6ff87ff3ff09ec456b191 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:03 +0100 Subject: [PATCH 061/130] New translations step_1.md (Danish) --- da-DK/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 da-DK/step_1.md diff --git a/da-DK/step_1.md b/da-DK/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/da-DK/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 2df4ef2c896f8a13222b0d0c250d27b864092709 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:04 +0100 Subject: [PATCH 062/130] New translations .keep (Afrikaans) --- af-ZA/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 af-ZA/solutions/.keep diff --git a/af-ZA/solutions/.keep b/af-ZA/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/af-ZA/solutions/.keep @@ -0,0 +1 @@ + From 81b542906eea0ae562ff94d52c5b1570b30145d2 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:05 +0100 Subject: [PATCH 063/130] New translations meta.yml (Afrikaans) --- af-ZA/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 af-ZA/meta.yml diff --git a/af-ZA/meta.yml b/af-ZA/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/af-ZA/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From ec2d3a387f8e711c3bce7e6b3af140a43591b1a8 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:06 +0100 Subject: [PATCH 064/130] New translations step_1.md (Spanish) --- es-ES/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 es-ES/step_1.md diff --git a/es-ES/step_1.md b/es-ES/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/es-ES/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From d0c300663f4ef87f99dabb986095faddc3baea14 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:08 +0100 Subject: [PATCH 065/130] New translations .keep (Spanish) --- es-ES/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 es-ES/solutions/.keep diff --git a/es-ES/solutions/.keep b/es-ES/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/es-ES/solutions/.keep @@ -0,0 +1 @@ + From 9e039970eecf367447d3c24fbac2c83e068158a6 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:09 +0100 Subject: [PATCH 066/130] New translations meta.yml (Spanish) --- es-ES/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 es-ES/meta.yml diff --git a/es-ES/meta.yml b/es-ES/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/es-ES/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 8137126f6ddf7733fc8d6e51bc89d0b2435b1079 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:10 +0100 Subject: [PATCH 067/130] New translations step_1.md (French) --- fr-FR/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 fr-FR/step_1.md diff --git a/fr-FR/step_1.md b/fr-FR/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/fr-FR/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From d677f5590c68dfc91c10fa3edf47b150ba404d4a Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:12 +0100 Subject: [PATCH 068/130] New translations .keep (French) --- fr-FR/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 fr-FR/solutions/.keep diff --git a/fr-FR/solutions/.keep b/fr-FR/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/fr-FR/solutions/.keep @@ -0,0 +1 @@ + From 991bfc37e142eb48ecd2afc1098d76538e106f7a Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:13 +0100 Subject: [PATCH 069/130] New translations meta.yml (French) --- fr-FR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 fr-FR/meta.yml diff --git a/fr-FR/meta.yml b/fr-FR/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/fr-FR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 6c4bc5b4b3509f1425cb0394aa7126cc13c811c4 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:14 +0100 Subject: [PATCH 070/130] New translations step_1.md (Romanian) --- ro-RO/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ro-RO/step_1.md diff --git a/ro-RO/step_1.md b/ro-RO/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/ro-RO/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 6803b0da7d51774dcccc8fe46c9efeb6ebaef794 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:15 +0100 Subject: [PATCH 071/130] New translations .keep (Danish) --- da-DK/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 da-DK/solutions/.keep diff --git a/da-DK/solutions/.keep b/da-DK/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/da-DK/solutions/.keep @@ -0,0 +1 @@ + From e7ea4e875981ae8470b9d69a66fe8373affddbbd Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:17 +0100 Subject: [PATCH 072/130] New translations meta.yml (German) --- de-DE/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 de-DE/meta.yml diff --git a/de-DE/meta.yml b/de-DE/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/de-DE/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 085ce24bf4e0e7235d446e9fc5200dbfdb2e3090 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:18 +0100 Subject: [PATCH 073/130] New translations step_1.md (Korean) --- ko-KR/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ko-KR/step_1.md diff --git a/ko-KR/step_1.md b/ko-KR/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/ko-KR/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 1d902286255940b2ea87bb757de79aa8e8481443 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:19 +0100 Subject: [PATCH 074/130] New translations .keep (Hungarian) --- hu-HU/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 hu-HU/solutions/.keep diff --git a/hu-HU/solutions/.keep b/hu-HU/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/hu-HU/solutions/.keep @@ -0,0 +1 @@ + From 3211ac465444eaced0653be65318210101961742 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:21 +0100 Subject: [PATCH 075/130] New translations .keep (Korean) --- ko-KR/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 ko-KR/solutions/.keep diff --git a/ko-KR/solutions/.keep b/ko-KR/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ko-KR/solutions/.keep @@ -0,0 +1 @@ + From b52106dff06f3e19e31b3ef20ed3107e05c5b5c8 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:22 +0100 Subject: [PATCH 076/130] New translations meta.yml (Korean) --- ko-KR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ko-KR/meta.yml diff --git a/ko-KR/meta.yml b/ko-KR/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/ko-KR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From efdef978198c173e6b2a02c9e5b78368341ee40e Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:23 +0100 Subject: [PATCH 077/130] New translations step_1.md (Japanese) --- ja-JP/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ja-JP/step_1.md diff --git a/ja-JP/step_1.md b/ja-JP/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/ja-JP/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From ba0d8a5fd0a6b3647ab7e7e9559b61238ba86bdf Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:25 +0100 Subject: [PATCH 078/130] New translations .keep (Japanese) --- ja-JP/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 ja-JP/solutions/.keep diff --git a/ja-JP/solutions/.keep b/ja-JP/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ja-JP/solutions/.keep @@ -0,0 +1 @@ + From 0d78fe3dcb9bb576c76dbc923253e13a774241b3 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:26 +0100 Subject: [PATCH 079/130] New translations meta.yml (Japanese) --- ja-JP/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ja-JP/meta.yml diff --git a/ja-JP/meta.yml b/ja-JP/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/ja-JP/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From a9297c456e3e22a77dd30757ae1b7ccf28f3d4aa Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:27 +0100 Subject: [PATCH 080/130] New translations step_1.md (Italian) --- it-IT/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 it-IT/step_1.md diff --git a/it-IT/step_1.md b/it-IT/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/it-IT/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 617de1f58e6e847dcc6249e6950f59c6efadab7e Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:28 +0100 Subject: [PATCH 081/130] New translations .keep (Italian) --- it-IT/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 it-IT/solutions/.keep diff --git a/it-IT/solutions/.keep b/it-IT/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/it-IT/solutions/.keep @@ -0,0 +1 @@ + From ddfb33bd8d4170e3b55450865c7197351d5cb842 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:30 +0100 Subject: [PATCH 082/130] New translations meta.yml (Italian) --- it-IT/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 it-IT/meta.yml diff --git a/it-IT/meta.yml b/it-IT/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/it-IT/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From b9f04c911228ffca2ec644c5846fe1d11f0ae70b Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:31 +0100 Subject: [PATCH 083/130] New translations step_1.md (Hungarian) --- hu-HU/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 hu-HU/step_1.md diff --git a/hu-HU/step_1.md b/hu-HU/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/hu-HU/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 3d3b17113f2755fc1c90c0bbe5ef304eaa232edd Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:32 +0100 Subject: [PATCH 084/130] New translations meta.yml (Hungarian) --- hu-HU/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hu-HU/meta.yml diff --git a/hu-HU/meta.yml b/hu-HU/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/hu-HU/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 7e5604f78245ecfce119a683d9c39170fb2a540d Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:33 +0100 Subject: [PATCH 085/130] New translations .keep (German) --- de-DE/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 de-DE/solutions/.keep diff --git a/de-DE/solutions/.keep b/de-DE/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/de-DE/solutions/.keep @@ -0,0 +1 @@ + From 2d78527adac1f6ee8f8b1a6c0b364b6710ec3777 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:35 +0100 Subject: [PATCH 086/130] New translations step_1.md (Hebrew) --- he-IL/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 he-IL/step_1.md diff --git a/he-IL/step_1.md b/he-IL/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/he-IL/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 02562b71b0d07163b94459424bccd3fe92ad39e2 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:36 +0100 Subject: [PATCH 087/130] New translations .keep (Hebrew) --- he-IL/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 he-IL/solutions/.keep diff --git a/he-IL/solutions/.keep b/he-IL/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/he-IL/solutions/.keep @@ -0,0 +1 @@ + From dba076a11433c8f63254f5adf525dbebd1231a2b Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:37 +0100 Subject: [PATCH 088/130] New translations meta.yml (Hebrew) --- he-IL/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 he-IL/meta.yml diff --git a/he-IL/meta.yml b/he-IL/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/he-IL/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 6d6ad27aca6601a8140d44955edf93a90ae95782 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:38 +0100 Subject: [PATCH 089/130] New translations step_1.md (Finnish) --- fi-FI/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 fi-FI/step_1.md diff --git a/fi-FI/step_1.md b/fi-FI/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/fi-FI/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 835094fd6977cd61d8610c5dda5d59e2000979ba Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:39 +0100 Subject: [PATCH 090/130] New translations .keep (Finnish) --- fi-FI/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 fi-FI/solutions/.keep diff --git a/fi-FI/solutions/.keep b/fi-FI/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/fi-FI/solutions/.keep @@ -0,0 +1 @@ + From 1a883104668545471bd43f667a8fcb09c73aecbe Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:41 +0100 Subject: [PATCH 091/130] New translations meta.yml (Finnish) --- fi-FI/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 fi-FI/meta.yml diff --git a/fi-FI/meta.yml b/fi-FI/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/fi-FI/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From ad4ad4f50760fce3223c4ec3ca0adaab0f664860 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:42 +0100 Subject: [PATCH 092/130] New translations step_1.md (Greek) --- el-GR/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 el-GR/step_1.md diff --git a/el-GR/step_1.md b/el-GR/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/el-GR/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 9107126980bab43289e38eac07c2efe94ed39c6c Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:43 +0100 Subject: [PATCH 093/130] New translations .keep (Greek) --- el-GR/solutions/.keep | 1 + 1 file changed, 1 insertion(+) create mode 100644 el-GR/solutions/.keep diff --git a/el-GR/solutions/.keep b/el-GR/solutions/.keep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/el-GR/solutions/.keep @@ -0,0 +1 @@ + From 0bb89f820e12c29b28edb96a67e1823fe44b4c30 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:45 +0100 Subject: [PATCH 094/130] New translations meta.yml (Greek) --- el-GR/meta.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 el-GR/meta.yml diff --git a/el-GR/meta.yml b/el-GR/meta.yml new file mode 100644 index 0000000..465a50e --- /dev/null +++ b/el-GR/meta.yml @@ -0,0 +1,15 @@ +--- +title: Creating a variable in Python +hero_image: images/banner.png +description: Find out how to create a variable +original_url: +theme: cc-prototype +duration: 1 #1, 2 or 3 +listed: false +ingredient: true +copyedit: true +interests: "" +technologies: "python" +steps: + - + title: Create a variable From 91975d2a5ba8b617e94a3469fbde5adcd71cf9da Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:46 +0100 Subject: [PATCH 095/130] New translations step_1.md (German) --- de-DE/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 de-DE/step_1.md diff --git a/de-DE/step_1.md b/de-DE/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/de-DE/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 0e6a9ff5d1912ee671b38b0eedca3cd0a3caad10 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 09:56:48 +0100 Subject: [PATCH 096/130] New translations step_1.md (Spanish, Latin America) --- es-LA/step_1.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 es-LA/step_1.md diff --git a/es-LA/step_1.md b/es-LA/step_1.md new file mode 100644 index 0000000..49bafdb --- /dev/null +++ b/es-LA/step_1.md @@ -0,0 +1,20 @@ +A variable allows you to store data within a program. Variables have a **name** and a **value**. + +This variable has the name `animal` and the value `cat`: + +```python +animal = "cat" +``` + +This variable has the name `score` and the value `30`: + +```python +score = 30 +``` + +To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: + +```python +# This code is wrong +30 = score +``` From 62697374df63883706b2e5e27b3c32c879893cb2 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 14:44:07 +0100 Subject: [PATCH 097/130] New translations meta.yml (Hindi) --- hi-IN/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hi-IN/meta.yml b/hi-IN/meta.yml index 465a50e..4294b7b 100644 --- a/hi-IN/meta.yml +++ b/hi-IN/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Python में वेरिएबल बनाना hero_image: images/banner.png -description: Find out how to create a variable +description: वेरिएबल बनाने का तरीका जानें original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: वेरिएबल बनाएँ From 02487dd57d0a04203b68fb7d180809e878b99fd1 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 14:44:09 +0100 Subject: [PATCH 098/130] New translations step_1.md (Hindi) --- hi-IN/step_1.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hi-IN/step_1.md b/hi-IN/step_1.md index 49bafdb..cbcc5b8 100644 --- a/hi-IN/step_1.md +++ b/hi-IN/step_1.md @@ -1,12 +1,12 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +वेरिएबल आपको प्रोग्राम के भीतर डेटा स्टोर करने की अनुमति देता है। वेरिएबल के पस **नाम (name)** और **मान (value)** होता है । -This variable has the name `animal` and the value `cat`: +इस वेरिएबल का नाम `animal` है और मान `cat` है: ```python -animal = "cat" +animal = "बिल्ली" ``` -This variable has the name `score` and the value `30`: +इस वेरिएबल का नाम `score` है और मान `30` है: ```python score = 30 From ac095593e39306ef43d96d7e8ee7b1a29632c1e3 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 15:44:56 +0100 Subject: [PATCH 099/130] New translations step_1.md (Hindi) --- hi-IN/step_1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hi-IN/step_1.md b/hi-IN/step_1.md index cbcc5b8..3ecdcc0 100644 --- a/hi-IN/step_1.md +++ b/hi-IN/step_1.md @@ -12,9 +12,9 @@ animal = "बिल्ली" score = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +वेरिएबल बनाने के लिए, इसे एक नाम दें और इसे एक मूल्य के बराबर सेट करें। वेरिएबल का नाम हमेशा बाईं ओर होता है, इसलिए यह कोड गलत है: ```python -# This code is wrong +#यह कोड गलत है 30 = score ``` From 81a058ba53e518b0bf6b8f448fb84b4b5172c325 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 17:40:20 +0100 Subject: [PATCH 100/130] New translations meta.yml (French) --- fr-FR/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fr-FR/meta.yml b/fr-FR/meta.yml index 465a50e..2872b33 100644 --- a/fr-FR/meta.yml +++ b/fr-FR/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Créer une variable en Python hero_image: images/banner.png -description: Find out how to create a variable +description: Découvrir comment créer une variable original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: Créer une variable From 70215f03b5ce57e7b3baeef4d9bffa5e608abbdd Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 17:40:22 +0100 Subject: [PATCH 101/130] New translations step_1.md (French) --- fr-FR/step_1.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fr-FR/step_1.md b/fr-FR/step_1.md index 49bafdb..f8be99a 100644 --- a/fr-FR/step_1.md +++ b/fr-FR/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +Une variable te permets de stocker des données dans un programme. Les variables ont un **nom** et une **valeur**. -This variable has the name `animal` and the value `cat`: +Cette variable a le nom `animal` et la valeur `chat` : ```python -animal = "cat" +animal = "chat" ``` -This variable has the name `score` and the value `30`: +Cette variable a le nom ` score ` et la valeur ` 30 ` : ```python score = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +Pour créer une variable, donne-lui un nom et définis-la comme égale à une valeur. Le nom de la variable va toujours à gauche, donc ce code est incorrect : ```python -# This code is wrong +# Ce code est erroné 30 = score ``` From 02bde1998e4d528efce3eb1f04141dcc2a7cbdb6 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 22:29:17 +0100 Subject: [PATCH 102/130] New translations meta.yml (Arabic) --- ar-SA/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ar-SA/meta.yml b/ar-SA/meta.yml index 465a50e..3435e1d 100644 --- a/ar-SA/meta.yml +++ b/ar-SA/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: إنشاء متغير في لغة البرمجة Python hero_image: images/banner.png -description: Find out how to create a variable +description: تعرف على كيفية إنشاء متغير original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: إنشاء متغير From 77e6200194c097c51e39eb28da938ed367b96438 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Mon, 6 Jul 2020 22:29:19 +0100 Subject: [PATCH 103/130] New translations step_1.md (Arabic) --- ar-SA/step_1.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ar-SA/step_1.md b/ar-SA/step_1.md index 49bafdb..1e539f7 100644 --- a/ar-SA/step_1.md +++ b/ar-SA/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +المتغير يسمح لك بتخزين البيانات داخل البرنامج. المتغيرات لها **اسم** و**قيمة**. -This variable has the name `animal` and the value `cat`: +هذا المتغير يحمل اسم `animal` والقيمة `القط`: ```python -animal = "cat" +animal = "القط" ``` -This variable has the name `score` and the value `30`: +هذا المتغير يحمل اسم `score ` والقيمة `30`: ```python score = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +لإنشاء متغير، أعطه اسماً واجعله مساوياً لقيمة. اسم المتغير دائما يكون على اليسار، لذلك هذه التعليمة البرمجية خاطئة: ```python -# This code is wrong +# هذه التعليمة البرمجية خاطئة 30 = score ``` From 47daaca064aecac5f06333d7c0c5583f2e012587 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 7 Jul 2020 09:27:35 +0100 Subject: [PATCH 104/130] New translations meta.yml (German) --- de-DE/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/de-DE/meta.yml b/de-DE/meta.yml index 465a50e..025a86c 100644 --- a/de-DE/meta.yml +++ b/de-DE/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Erstellen einer Variablen in Python hero_image: images/banner.png -description: Find out how to create a variable +description: Erfahre, wie du eine Variable erstellen kannst original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: Erstelle eine Variable From b51a4c604f37e9067c74d0f9f939abf493f4f12d Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 7 Jul 2020 09:27:37 +0100 Subject: [PATCH 105/130] New translations step_1.md (German) --- de-DE/step_1.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/de-DE/step_1.md b/de-DE/step_1.md index 49bafdb..52e5041 100644 --- a/de-DE/step_1.md +++ b/de-DE/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +Eine Variable erlaubt es dir, Daten in einem Programm zu speichern. Variablen haben einen **Namen** und einen **Wert**. -This variable has the name `animal` and the value `cat`: +Diese Variable hat den Namen `Tier` und den Wert `Katze`: ```python -animal = "cat" +tier = "katze" ``` -This variable has the name `score` and the value `30`: +Diese Variable hat den Namen `Punkte` und den Wert `30`: ```python -score = 30 +punkte = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +Um eine Variable zu erstellen, gib ihr einen Namen und weise ihr einen Wert zu. Der Name der Variablen steht immer auf der linken Seite, daher ist dieser Code falsch: ```python -# This code is wrong -30 = score +# Dieser Code ist falsch +30 = punkte ``` From 3c169c032069d802e252c89afa4f7c86dd7de103 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 7 Jul 2020 15:21:28 +0100 Subject: [PATCH 106/130] New translations meta.yml (Greek) --- el-GR/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/el-GR/meta.yml b/el-GR/meta.yml index 465a50e..010e69a 100644 --- a/el-GR/meta.yml +++ b/el-GR/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Δημιουργία μεταβλητής στην Python hero_image: images/banner.png -description: Find out how to create a variable +description: Μάθε πώς να δημιουργείς μια μεταβλητή original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: Δημιούργησε μία μεταβλητή From 5f62dc08bd26d8b9f5f9b2cdbd9cba993fb0d0ff Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 7 Jul 2020 15:21:29 +0100 Subject: [PATCH 107/130] New translations step_1.md (Greek) --- el-GR/step_1.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/el-GR/step_1.md b/el-GR/step_1.md index 49bafdb..e08cd51 100644 --- a/el-GR/step_1.md +++ b/el-GR/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +Μια μεταβλητή σου επιτρέπει να αποθηκεύεις δεδομένα μέσα σε ένα πρόγραμμα. Οι μεταβλητές έχουν ένα **όνομα** και μια **τιμή**. -This variable has the name `animal` and the value `cat`: +Αυτή η μεταβλητή έχει το όνομα `ζώο` και την τιμή `"γάτα"`: ```python -animal = "cat" +ζώο = "γάτα" ``` -This variable has the name `score` and the value `30`: +Αυτή η μεταβλητή έχει το όνομα `βαθμολογία` και την τιμή `30`: ```python -score = 30 +βαθμολογία = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +Για να δημιουργήσεις μια μεταβλητή, δώσε της ένα όνομα και όρισέ την ίση με μια τιμή. Το όνομα της μεταβλητής βρίσκεται πάντα στα αριστερά, οπότε αυτός ο κώδικας είναι λάθος: ```python -# This code is wrong -30 = score +# Αυτός ο κώδικας είναι λάθος +30 = βαθμολογία ``` From 900171a7512b57d697f0ce8f50f4fb9664275603 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 7 Jul 2020 17:42:55 +0100 Subject: [PATCH 108/130] New translations meta.yml (Japanese) --- ja-JP/meta.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ja-JP/meta.yml b/ja-JP/meta.yml index 465a50e..d8b8b4a 100644 --- a/ja-JP/meta.yml +++ b/ja-JP/meta.yml @@ -1,5 +1,5 @@ --- -title: Creating a variable in Python +title: Python で変数を作成する hero_image: images/banner.png description: Find out how to create a variable original_url: @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: 変数を作成する From b9be4eda57c9db37652c20b8a0843e6c7b7852b4 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 7 Jul 2020 18:40:55 +0100 Subject: [PATCH 109/130] New translations meta.yml (Japanese) --- ja-JP/meta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ja-JP/meta.yml b/ja-JP/meta.yml index d8b8b4a..4bc1a6b 100644 --- a/ja-JP/meta.yml +++ b/ja-JP/meta.yml @@ -1,7 +1,7 @@ --- title: Python で変数を作成する hero_image: images/banner.png -description: Find out how to create a variable +description: 変数の作成方法について original_url: theme: cc-prototype duration: 1 #1, 2 or 3 From cef7de3a239d3ac16e43123611b776f4c4a2df92 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Tue, 7 Jul 2020 18:40:57 +0100 Subject: [PATCH 110/130] New translations step_1.md (Japanese) --- ja-JP/step_1.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ja-JP/step_1.md b/ja-JP/step_1.md index 49bafdb..c6b0ca8 100644 --- a/ja-JP/step_1.md +++ b/ja-JP/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +変数を使用すると、プログラム内にデータを保存できます。 変数は **名前** と **値** を持っています。 -This variable has the name `animal` and the value `cat`: +この変数の名前は `animal` (動物) で、値は `ねこ`です。 ```python -animal = "cat" +animal = "ねこ" ``` -This variable has the name `score` and the value `30`: +この変数の名前は `score` (得点)で、値は `30`です。 ```python score = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +変数を作成するには、名前を決め、値とイコール記号でつなげます。 変数の名前は常に左側に書く必要があるため、次のコードはまちがっています。 ```python -# This code is wrong +# このコードはまちがっています 30 = score ``` From 154b690ba3c2f7fabc84b71ee31d811cb6182f04 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 10 Jul 2020 09:10:08 +0100 Subject: [PATCH 111/130] New translations meta.yml (Dutch) --- nl-NL/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nl-NL/meta.yml b/nl-NL/meta.yml index 465a50e..050fd8a 100644 --- a/nl-NL/meta.yml +++ b/nl-NL/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Een variabele maken in Python hero_image: images/banner.png -description: Find out how to create a variable +description: Ontdek hoe je een variabele kunt maken original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: Maak een variabele From 9e0c534e2bfb8350b46bed314c552a0e8bf82339 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 10 Jul 2020 09:10:10 +0100 Subject: [PATCH 112/130] New translations step_1.md (Dutch) --- nl-NL/step_1.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nl-NL/step_1.md b/nl-NL/step_1.md index 49bafdb..08db5d3 100644 --- a/nl-NL/step_1.md +++ b/nl-NL/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +Met een variabele kun je gegevens binnen een programma opslaan. Variabelen hebben een **naam** en een **waarde**. -This variable has the name `animal` and the value `cat`: +Deze variabele heeft de naam `dier` en de waarde `kat`: ```python -animal = "cat" +dier = "kat" ``` -This variable has the name `score` and the value `30`: +Deze variabele heeft de naam `score` en de waarde `30`: ```python score = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +Om een variabele te maken, geef je deze een naam en stel je deze in op een waarde. De naam van de variabele staat altijd aan de linkerkant, dus deze code is verkeerd: ```python -# This code is wrong +# Deze code is verkeerd 30 = score ``` From 239bd1c449b186b338c95775696fd7ccd3c13b89 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 10 Jul 2020 23:11:18 +0100 Subject: [PATCH 113/130] New translations meta.yml (Portuguese, Brazilian) --- pt-BR/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pt-BR/meta.yml b/pt-BR/meta.yml index 465a50e..1c1d906 100644 --- a/pt-BR/meta.yml +++ b/pt-BR/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Criando uma variável em Python hero_image: images/banner.png -description: Find out how to create a variable +description: Descubra como criar uma variável original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: Crie uma variável From e4ffff128bbc7139b0c47cff8d39aeb01a5a01b4 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Fri, 10 Jul 2020 23:11:19 +0100 Subject: [PATCH 114/130] New translations step_1.md (Portuguese, Brazilian) --- pt-BR/step_1.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pt-BR/step_1.md b/pt-BR/step_1.md index 49bafdb..866e611 100644 --- a/pt-BR/step_1.md +++ b/pt-BR/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +Uma variável permite armazenar dados em um programa. Variáveis têm um **nome** e um **valor**. -This variable has the name `animal` and the value `cat`: +Esta variável tem o nome `animal` e o valor `gato`: ```python -animal = "cat" +animal = "gato" ``` -This variable has the name `score` and the value `30`: +Esta variável tem o nome `pontos` e o valor `30`: ```python -score = 30 +pontos = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +Para criar uma variável, atribua um nome a ela e defina-a como igual a um valor. O nome da variável sempre fica à esquerda, então este código está errado: ```python -# This code is wrong -30 = score +# Este código está errado +30 = pontos ``` From a554925b9f6f539e4ae2c34a9a5f99a2e389cb4e Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Sun, 12 Jul 2020 19:15:39 +0100 Subject: [PATCH 115/130] New translations step_1.md (Hindi) --- hi-IN/step_1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hi-IN/step_1.md b/hi-IN/step_1.md index 3ecdcc0..3795cee 100644 --- a/hi-IN/step_1.md +++ b/hi-IN/step_1.md @@ -1,4 +1,4 @@ -वेरिएबल आपको प्रोग्राम के भीतर डेटा स्टोर करने की अनुमति देता है। वेरिएबल के पस **नाम (name)** और **मान (value)** होता है । +वेरिएबल आपको प्रोग्राम के भीतर डेटा स्टोर करने की अनुमति देता है। वेरिएबल के पास **नाम (name)** और **मान (value)** होता है। इस वेरिएबल का नाम `animal` है और मान `cat` है: From bf38b59d4a9617236c5f6b5200d4df3b3800e967 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Sun, 12 Jul 2020 22:04:11 +0100 Subject: [PATCH 116/130] New translations meta.yml (Spanish, Latin America) --- es-LA/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/es-LA/meta.yml b/es-LA/meta.yml index 465a50e..2beed54 100644 --- a/es-LA/meta.yml +++ b/es-LA/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Creando una variable en Python hero_image: images/banner.png -description: Find out how to create a variable +description: Descubre cómo crear una variable original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: Crear una variable From 86031ac14b47cb2057b5cde192ed7f5461de82f2 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Sun, 12 Jul 2020 22:04:12 +0100 Subject: [PATCH 117/130] New translations step_1.md (Spanish, Latin America) --- es-LA/step_1.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/es-LA/step_1.md b/es-LA/step_1.md index 49bafdb..36fa1ff 100644 --- a/es-LA/step_1.md +++ b/es-LA/step_1.md @@ -1,15 +1,15 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +Una variable te permite almacenar datos dentro de un programa. Las variables tienen un **nombre** y un **valor**. -This variable has the name `animal` and the value `cat`: +Esta variable tiene el nombre `animal` y el valor `gato`: ```python -animal = "cat" +animal = "gato" ``` -This variable has the name `score` and the value `30`: +Esta variable tiene el nombre `puntuacion` y el valor `30`: ```python -score = 30 +puntuacion = 30 ``` To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: From ef165ff80f8cf374579ac0c6eef0b85cc0dc7cc5 Mon Sep 17 00:00:00 2001 From: ninaszymor <33628387+ninaszymor@users.noreply.github.com> Date: Sun, 12 Jul 2020 23:07:54 +0100 Subject: [PATCH 118/130] New translations step_1.md (Spanish, Latin America) --- es-LA/step_1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/es-LA/step_1.md b/es-LA/step_1.md index 36fa1ff..9354862 100644 --- a/es-LA/step_1.md +++ b/es-LA/step_1.md @@ -12,9 +12,9 @@ Esta variable tiene el nombre `puntuacion` y el valor `30`: puntuacion = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +Para crear una variable, dale un nombre y dale un valor. El nombre de la variable siempre va a la izquierda, por lo que este código es incorrecto: ```python -# This code is wrong -30 = score +# Este código es incorrecto +30 = puntuacion ``` From 69e4d6e53110d30a694e4d0d91cbdca48a52988e Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 23 Jul 2020 15:07:54 +0100 Subject: [PATCH 119/130] New translations step_1.md (Ukrainian) --- uk-UA/step_1.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/uk-UA/step_1.md b/uk-UA/step_1.md index 49bafdb..5d4c811 100644 --- a/uk-UA/step_1.md +++ b/uk-UA/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +Змінна дозволяє зберігати дані в межах програми. Кожна змінна має **ім'я** і **значення**. -This variable has the name `animal` and the value `cat`: +Ця змінна має ім'я `animal` і значення `кіт`: ```python -animal = "cat" +animal = "кіт" ``` -This variable has the name `score` and the value `30`: +Ця змінна має назву `score` (рахунок) і значення `30`: ```python score = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +Щоб створити змінну, дай їй ім'я та встанови її значення. Ім'я змінної завжди знаходиться зліва, тому цей код неправильний: ```python -# This code is wrong +# Цей код неправильний 30 = score ``` From 6a77d3234c9802ce1693c9c02d5ccac1c7d17d35 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 23 Jul 2020 15:07:56 +0100 Subject: [PATCH 120/130] New translations meta.yml (Ukrainian) --- uk-UA/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uk-UA/meta.yml b/uk-UA/meta.yml index 465a50e..eefee47 100644 --- a/uk-UA/meta.yml +++ b/uk-UA/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Створення змінної в Python hero_image: images/banner.png -description: Find out how to create a variable +description: Дізнайся, як створити змінну original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: Створи змінну From 5bb4d64c8321172b9f04507deaa01c375815d7d2 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 23 Jul 2020 15:07:59 +0100 Subject: [PATCH 121/130] New translations step_1.md (Korean) --- ko-KR/step_1.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ko-KR/step_1.md b/ko-KR/step_1.md index 49bafdb..726f68b 100644 --- a/ko-KR/step_1.md +++ b/ko-KR/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +변수를 사용하면 프로그램 내에 데이터를 저장할 수 있습니다. 변수는 **이름**과 **값**을 가지고 있습니다. -This variable has the name `animal` and the value `cat`: +아래 Code를 보면, 변수의 이름은 `animal` 이고 변수에 주어진 텍스트 값은 `cat` 입니다. ```python animal = "cat" ``` -This variable has the name `score` and the value `30`: +아래 Code를 보면, 변수의 이름은 `score`이고 변수의 값은 `30`입니다. ```python score = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +변수를 만들려면 이름을 설정하고 값과 동일하게 설정하세요. 변수의 이름은 항상 왼쪽에 가야하므로 다음 코드는 잘못된 것입니다. ```python -# This code is wrong +# 이 코드는 틀렸습니다. 30 = score ``` From 6f6ebc3643ad8d7dc30b2ffb9e2a6a67c1b22de6 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 23 Jul 2020 15:08:01 +0100 Subject: [PATCH 122/130] New translations meta.yml (Korean) --- ko-KR/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ko-KR/meta.yml b/ko-KR/meta.yml index 465a50e..36d07b4 100644 --- a/ko-KR/meta.yml +++ b/ko-KR/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: 파이썬에서 변수 만들기 hero_image: images/banner.png -description: Find out how to create a variable +description: 변수를 만드는 방법 알아보기 original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: 변수 만들기 From 8540a47dfa4f66a0438770924e8c919a165f9db0 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 23 Jul 2020 15:08:04 +0100 Subject: [PATCH 123/130] New translations step_1.md (Greek) --- el-GR/step_1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/el-GR/step_1.md b/el-GR/step_1.md index e08cd51..40b8e5a 100644 --- a/el-GR/step_1.md +++ b/el-GR/step_1.md @@ -1,12 +1,12 @@ Μια μεταβλητή σου επιτρέπει να αποθηκεύεις δεδομένα μέσα σε ένα πρόγραμμα. Οι μεταβλητές έχουν ένα **όνομα** και μια **τιμή**. -Αυτή η μεταβλητή έχει το όνομα `ζώο` και την τιμή `"γάτα"`: +Αυτή η μεταβλητή έχει το όνομα `animal` και την τιμή `"γάτα"`: ```python ζώο = "γάτα" ``` -Αυτή η μεταβλητή έχει το όνομα `βαθμολογία` και την τιμή `30`: +Αυτή η μεταβλητή έχει το όνομα `score` και την τιμή `30`: ```python βαθμολογία = 30 From 03d0ca595f313f267a60ce3d13d3ef0489997bed Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 23 Jul 2020 15:08:10 +0100 Subject: [PATCH 124/130] New translations step_1.md (French) --- fr-FR/step_1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fr-FR/step_1.md b/fr-FR/step_1.md index f8be99a..0b7ce20 100644 --- a/fr-FR/step_1.md +++ b/fr-FR/step_1.md @@ -1,4 +1,4 @@ -Une variable te permets de stocker des données dans un programme. Les variables ont un **nom** et une **valeur**. +Une variable te permet de stocker des données dans un programme. Les variables ont un **nom** et une **valeur**. Cette variable a le nom `animal` et la valeur `chat` : From aee0da0ec0e786c7a70e90ccf7cac3b3579d6a4f Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 6 Aug 2020 11:54:18 +0100 Subject: [PATCH 125/130] New translations meta.yml (Polish) --- pl-PL/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pl-PL/meta.yml b/pl-PL/meta.yml index 465a50e..5f64aba 100644 --- a/pl-PL/meta.yml +++ b/pl-PL/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Tworzenie zmiennej w Pythonie hero_image: images/banner.png -description: Find out how to create a variable +description: Dowiedz się, jak utworzyć zmienną original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: Stwórz zmienną From a4a75346df9fea583df2181c730d3e367561127b Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Thu, 6 Aug 2020 11:54:19 +0100 Subject: [PATCH 126/130] New translations step_1.md (Polish) --- pl-PL/step_1.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pl-PL/step_1.md b/pl-PL/step_1.md index 49bafdb..6630795 100644 --- a/pl-PL/step_1.md +++ b/pl-PL/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +Zmienna umożliwia przechowywanie danych w programie. Zmienne mają **nazwę** i **wartość**. -This variable has the name `animal` and the value `cat`: +Ta zmienna ma nazwę `zwierzę` oraz wartość `kot`: ```python -animal = "cat" +zwierzę = "kot" ``` -This variable has the name `score` and the value `30`: +Ta zmienna ma nazwę `wynik` i wartość `30`: ```python -score = 30 +wynik = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +Aby utworzyć zmienną, nadaj jej nazwę i ustaw wartość. Nazwa zmiennej zawsze znajduje się po lewej stronie, więc ten kod jest nieprawidłowy: ```python -# This code is wrong -30 = score +# Ten kod jest nieprawidłowy +30 = wynik ``` From 7a97477ed6cea872183de8474fc43e2bb0422952 Mon Sep 17 00:00:00 2001 From: majamanojlovic <49232422+majamanojlovic@users.noreply.github.com> Date: Mon, 7 Jun 2021 16:48:29 +0100 Subject: [PATCH 127/130] New translations step_1.md (Greek) --- el-GR/step_1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/el-GR/step_1.md b/el-GR/step_1.md index 40b8e5a..06998c9 100644 --- a/el-GR/step_1.md +++ b/el-GR/step_1.md @@ -3,18 +3,18 @@ Αυτή η μεταβλητή έχει το όνομα `animal` και την τιμή `"γάτα"`: ```python -ζώο = "γάτα" +animal = "γάτα" ``` Αυτή η μεταβλητή έχει το όνομα `score` και την τιμή `30`: ```python -βαθμολογία = 30 +score = 30 ``` Για να δημιουργήσεις μια μεταβλητή, δώσε της ένα όνομα και όρισέ την ίση με μια τιμή. Το όνομα της μεταβλητής βρίσκεται πάντα στα αριστερά, οπότε αυτός ο κώδικας είναι λάθος: ```python # Αυτός ο κώδικας είναι λάθος -30 = βαθμολογία +30 = score ``` From 95e11b5fa0c6eb798f955d13969a9a6eedca6d97 Mon Sep 17 00:00:00 2001 From: Sasha Mishcheriakova <135987917+sashamishcheriakova@users.noreply.github.com> Date: Tue, 22 Apr 2025 11:37:50 +0100 Subject: [PATCH 128/130] New translations meta.yml (Italian) --- it-IT/meta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/it-IT/meta.yml b/it-IT/meta.yml index 465a50e..ace7fc0 100644 --- a/it-IT/meta.yml +++ b/it-IT/meta.yml @@ -1,7 +1,7 @@ --- -title: Creating a variable in Python +title: Creare una variabile in Python hero_image: images/banner.png -description: Find out how to create a variable +description: Scopri come creare una variabile original_url: theme: cc-prototype duration: 1 #1, 2 or 3 @@ -12,4 +12,4 @@ interests: "" technologies: "python" steps: - - title: Create a variable + title: Crea una variabile From d90ad97b52acec1fabf6fc17078a088a4313a238 Mon Sep 17 00:00:00 2001 From: Sasha Mishcheriakova <135987917+sashamishcheriakova@users.noreply.github.com> Date: Tue, 22 Apr 2025 11:38:20 +0100 Subject: [PATCH 129/130] New translations step_1.md (German) --- de-DE/step_1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/de-DE/step_1.md b/de-DE/step_1.md index 52e5041..d46bef2 100644 --- a/de-DE/step_1.md +++ b/de-DE/step_1.md @@ -1,12 +1,12 @@ Eine Variable erlaubt es dir, Daten in einem Programm zu speichern. Variablen haben einen **Namen** und einen **Wert**. -Diese Variable hat den Namen `Tier` und den Wert `Katze`: +Diese Variable hat den Namen `tier` und den Wert `katze`: ```python tier = "katze" ``` -Diese Variable hat den Namen `Punkte` und den Wert `30`: +Diese Variable hat den Namen `punkte` und den Wert `30`: ```python punkte = 30 From 7c228ecde0236f098dff94f6047ec1d1739d5d54 Mon Sep 17 00:00:00 2001 From: Sasha Mishcheriakova <135987917+sashamishcheriakova@users.noreply.github.com> Date: Tue, 22 Apr 2025 11:38:24 +0100 Subject: [PATCH 130/130] New translations step_1.md (Italian) --- it-IT/step_1.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/it-IT/step_1.md b/it-IT/step_1.md index 49bafdb..dcf3708 100644 --- a/it-IT/step_1.md +++ b/it-IT/step_1.md @@ -1,20 +1,20 @@ -A variable allows you to store data within a program. Variables have a **name** and a **value**. +Una variabile consente di memorizzare i dati all'interno di un programma. Le variabili hanno un **nome** e un **valore**. -This variable has the name `animal` and the value `cat`: +Questa variabile ha come nome `animale` e come valore `gatto`: ```python -animal = "cat" +animale = "gatto" ``` -This variable has the name `score` and the value `30`: +Questa variabile ha come nome `punteggio` e come valore `30`: ```python -score = 30 +punteggio = 30 ``` -To create a variable, give it a name and set it equal to a value. The name of the variable always goes on the left, so this code is wrong: +Per creare una variabile, dalle un nome e impostalo ad un valore. Il nome della variabile va sempre a sinistra, quindi questo codice è errato: ```python -# This code is wrong -30 = score +# Questo codice è sbagliato +30 = punteggio ```