Skip to content

Commit d1afc5c

Browse files
authored
Merge pull request RaspberryPiFoundation#72 from codeclubpolska/secret-messages
PL - Gameshow, Compliment Generator and Secret Messages
2 parents 5eadc48 + 0241e0e commit d1afc5c

34 files changed

+724
-676
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from random import *
22

3-
print("Pet naming service")
4-
print("------------------")
3+
print("Uslugi nazywania zwierzakow")
4+
print("---------------------------")
55

6-
names = ["Bob", "Fluffy", "Martin", "Spot"]
6+
imiona = ["Reksio", "Azor", "Mruczek", "As"]
77

8-
#print a random name in the 'names' list
9-
print("You should name your new pet" , choice(names))
8+
#wyswietl losowe imie z listy 'imiona'
9+
print("Nazwij swojego zwierzaka" , choice(imiona))
Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,41 @@
11
---
2-
title: Compliment Generator — Notes for Club Leaders
3-
language: en
2+
title: Generator Komplementów — Informacje dla prowadzącego
3+
language: pl
44
embeds: "*.png"
55
...
66

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,
99

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/).
1212

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")
1419

1520
+ ComplimentGenerator.py
1621

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.
1823

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:
2025

2126
+ PetNamingService.py
2227

2328
#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.
3641

0 commit comments

Comments
 (0)