Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit c2adf7b

Browse files
Merge pull request #45 from Lorenagubaira/python-functions-programming-exercises
codepaces reference
2 parents c3efbe0 + d53186f commit c2adf7b

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

‎README.es.md‎

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Creado por <a href="https://twitter.com/alesanchezr">@alesanchezr</a> y <a href=
44

55
<a href="https://4geeks.com/interactive-exercise/python-function-exercises"><img height="280" align="right" src="https://raw.githubusercontent.com/4GeeksAcademy/python-lists-loops-programming-exercises/master/python-lp-badge.png"></a>
66
<!-- endhide -->
7+
78
Aprende y practica las funciones de Python. Vas a ver los siguientes conceptos:
89

910
1. Declarar una función.
@@ -26,9 +27,11 @@ Estos ejercicios son colaborativos, ¡te necesitamos! Si encuentras algún error
2627

2728
<!-- hide -->
2829

29-
## Instalación en un clic:
30+
## Instalación en un clic (recomendado)
31+
32+
Puedes empezar estos ejercicios en pocos segundos haciendo clic en: [Abrir en Codespaces](https://codespaces.new/?repo=4GeeksAcademy/python-functions-programming-exercises) (recomendado) o [Abrir en Gitpod](https://gitpod.io#https://github.com/4GeeksAcademy/python-functions-programming-exercises.git).
3033

31-
Haz clic en los siguientes enlaces para abrir este tutorial inmediatamente en [Codespaces](https://codespaces.new/?repo=4GeeksAcademy/python-functions-programming-exercises) o [Gitpod](https://gitpod.io#https://github.com/4GeeksAcademy/python-functions-programming-exercises.git).
34+
> Una vez ya tengas abierto VSCode, los ejercicios de LearnPack deberían empezar automáticamente; si esto no sucede puedes intentar empezar los ejercicios escribiendo este comando en tu terminal: `$ learnpack start`
3235
3336
## Instalación local:
3437

@@ -51,9 +54,6 @@ $ cd python-functions-programming-exercises
5154
$ pip install pytest==4.4.2 mock pytest-testdox
5255
$ learnpack start
5356
```
54-
55-
Nota: Estos ejercicios tienen calificación automática pero es un tanto rígida, te recomiendo ignorar los tests, considéralos como una recomendación o podrías frustrarte.
56-
5757
<!-- endhide -->
5858

5959
## ¿Cómo están organizados los ejercicios?
@@ -64,6 +64,8 @@ Cada ejercicio es un pequeño proyecto en Python que contiene los siguientes arc
6464
2. **README.md:** contiene las instrucciones del ejercicio.
6565
3. **test.py:** no tienes que abrir este archivo. Contiene los scripts de pruebas del ejercicio.
6666

67+
> Nota: Estos ejercicios tienen calificación automática pero es un tanto rígida, te recomiendo ignorar los tests, considéralos como una recomendación o podrías frustrarte.
68+
6769
## Colaboradores
6870

6971
Gracias a estas personas maravillosas ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):

‎README.md‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ By <a href="https://twitter.com/alesanchezr">@alesanchezr</a> and <a href="https
55

66
<a href="https://4geeks.com/interactive-exercise/python-function-exercises"><img height="280" align="right" src="https://raw.githubusercontent.com/4GeeksAcademy/python-lists-loops-programming-exercises/master/python-lp-badge.png"></a>
77
<!-- endhide -->
8+
9+
*Estas instrucciones [están disponibles en 🇪🇸 español](https://github.com/Lorenagubaira/python-functions-programming-exercises/blob/master/README.es.md) :es:*
10+
811
Learn and practice Python Functions. You will see the folowing concepts:
912

1013
1. Declaring a function.
@@ -17,7 +20,7 @@ Learn and practice Python Functions. You will see the folowing concepts:
1720

1821
5. Function recursivity, and many other functional concepts.
1922

20-
Note: The entire tutorial is 👆 interactive, ✅ auto-graded and with 📹 video tutorials.
23+
> Note: The entire tutorial is 👆 interactive, ✅ auto-graded and with 📹 video tutorials.
2124
2225
These exercises were built in collaboration, we need you! If you find any bugs or misspells please contribute and report them.
2326

@@ -26,9 +29,12 @@ These exercises were built in collaboration, we need you! If you find any bugs o
2629
</p>
2730

2831
<!-- hide -->
29-
## One click installation:
3032

31-
Click in the following links to open immediately in [Codespaces](https://codespaces.new/?repo=4GeeksAcademy/python-functions-programming-exercises) or [Gitpod](https://gitpod.io#https://github.com/4GeeksAcademy/python-functions-programming-exercises.git).
33+
## One click installation (recommended):
34+
35+
You can open these exercises in just a few seconds by clicking: [Open in Codespaces](https://codespaces.new/?repo=4GeeksAcademy/python-functions-programming-exercises) (recommended) or [Open in Gitpod](https://gitpod.io#https://github.com/4GeeksAcademy/python-functions-programming-exercises).
36+
37+
> Once you have VSCode open the LearnPack exercises should start automatically. If exercises don't run automatically you can try typing on your terminal: `$ learnpack start`
3238
3339
## Local Installation
3440

@@ -52,7 +58,6 @@ $ pip install pytest==4.4.2 mock pytest-testdox
5258
$ learnpack start
5359
```
5460

55-
Note: The exercises have automatic grading but its very rigid and string, my recomendation is to ignore the tests and use them only as a recomendation or you can get frustrated.
5661

5762
<!-- endhide -->
5863
## How are the exercises organized?
@@ -63,6 +68,8 @@ Each exercise is a small react application containing the following files:
6368
2. **README.md:** contains exercise instructions.
6469
3. **test.py:** you don't have to open this file, it contains the testing script for the exercise.
6570

71+
> Note: The exercises have automatic grading but its very rigid and string, my recomendation is to ignore the tests and use them only as a recomendation or you can get frustrated.
72+
6673
## Contributors
6774

6875
Thanks to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /