|
1 | 1 | ---
|
2 |
| -title: Compliment Generator — Notes for Club Leaders |
3 |
| -language: en |
| 2 | +title: Generator Komplementów — Informacje dla prowadzącego |
| 3 | +language: pl |
4 | 4 | embeds: "*.png"
|
5 | 5 | ...
|
6 | 6 |
|
7 |
| -#Introduction: |
8 |
| -This project teaches children how to use lists, as well as accessing elements of a list, and adding and removing list items. Students learn through making a compliment generator, which gives the user a random compliment from a list. |
| 7 | +#Wprowadzenie: |
| 8 | +Ten projekt uczy jak korzystać z list, |
9 | 9 |
|
10 |
| -#Resources |
11 |
| -For this project, Python will need to be installed. It is recommended that version 3.2 of Python is installed. |
| 10 | +# Źródła online |
| 11 | +Do pisania kodu w języku Python online rekomendujemy używanie edytora (https://trinket.io/). |
12 | 12 |
|
13 |
| -Children can also make use of the materials which accompany these challenges. Files included in the 'Project Resources' folder (found under the 'Download Project Materials' link): |
| 13 | +W tym projekcie dzieci mogą skorzystać z pustego edytora ([https://trinket.io/python/7c0a7396c0](https://trinket.io/python/7c0a7396c0)), by pisać własny kod. |
| 14 | + |
| 15 | +# Źródła offline |
| 16 | +Aby wykonać ten projekt w trybie offline (bez korzystania z platformy trinket.io) konieczne jest, aby na komputerze zainstalowamy był Python (najlepiej w wersji 3.2). |
| 17 | + |
| 18 | +Dzieci mogą też korzystać z materiałów dołączonych do tego projektu. Pliki załączone w katalogu "Project Resources" (do pobrania po kliknięciu w link "Pobierz materiały") |
14 | 19 |
|
15 | 20 | + ComplimentGenerator.py
|
16 | 21 |
|
17 |
| -Make sure that each child has read and write access to their own copy of these resources. |
| 22 | +Upewnij się, że każde dziecko ma dostęp do odczytu i zapisu ich kopii materiałów. |
18 | 23 |
|
19 |
| -You can find a completed version of this project's challenges by clicking the 'Download Project Materials' link for this project, which contains: |
| 24 | +Rozwiązane wyzwania dla tego projektu można pobrać klikając link 'Download Project Materials` dla tego projektu, które zawiera: |
20 | 25 |
|
21 | 26 | + PetNamingService.py
|
22 | 27 |
|
23 | 28 | #Learning Objectives
|
24 |
| -+ Lists; |
25 |
| -+ Arrays, and accessing list elements; |
26 |
| -+ Using `random.choice()` method on a list; |
27 |
| -+ List `append()` and `remove()` methods. |
28 |
| - |
29 |
| -#Challenges |
30 |
| -+ Adding more compliments - adding items to a list; |
31 |
| -+ Duplicate hobbies - testing and fixing a problem; |
32 |
| -+ Pet naming service - applying the use of lists to a new problem. |
33 |
| - |
34 |
| -#Frequently Asked Questions |
35 |
| -+ Children may need to be reminded that list items are separated by a comma, and that there is no comma after the last item in a list. |
| 29 | ++ Listy; |
| 30 | ++ Tablice i dostęp do elementów; |
| 31 | ++ Wykorzystanie metody `random.choice()` na liście; |
| 32 | ++ Metody `append()` i `remove()` list. |
| 33 | + |
| 34 | +#Wyzwanie |
| 35 | ++ Dodawanie komplementów - dodawanie elementów do listy; |
| 36 | ++ Zduplikowane zainteresowania - testowanie i naprawienie błędu; |
| 37 | ++ Usługa nazywania zwierzaków - zastosowanie list do rozwiązania nowego problemu. |
| 38 | + |
| 39 | +#Często zadawane pytania |
| 40 | ++ Dzieci mogą potrzebować przypomnienia, że elementy listy powinny być oddzielone przecinkiem i że nie ma przecinka po ostatnim elemencie listy. |
36 | 41 |
|
0 commit comments