Movatterモバイル変換


[0]ホーム

URL:


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

fixed text README#51

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 18 additions & 21 deletionsREADME.es.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
<!-- hide -->
# 🐍Turorial y Ejercicios sobre Funciones de Python</h1>
Creado por <a href="https://twitter.com/alesanchezr">@alesanchezr</a> y <a href="https://github.com/4GeeksAcademy/python-functions-programming-exercises/graphs/contributors">othors contribuyentes</a> en <a href="http://4geeksacademy.com/">4Geeks Academy</a>
# 🐍Tutorial y Ejercicios sobre Funciones de Python</h1>
Creado por <a href="https://twitter.com/alesanchezr">@alesanchezr</a> y <a href="https://github.com/4GeeksAcademy/python-functions-programming-exercises/graphs/contributors">otros contribuyentes</a> en <a href="http://4geeksacademy.com/">4Geeks Academy</a>

<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>
<!-- endhide -->
Expand All@@ -11,68 +11,65 @@ Aprende y practica las funciones de Python. Vas a ver los siguientes conceptos:

2. Llamar a una función.

3.Alcances defunciones.
3.Alcance deuna función.

4. Funcionesañadidas.
4. Funcionesanidadas.

5. Recursividad de funciones y muchos otros conceptos funcionales.

Todo el tutorial es 👆 interactivo, ✅ calificado automáticamente y con. 📹videos tutoriales.
Todo el tutorial es 👆 interactivo, ✅ calificado automáticamente y con 📹video tutoriales.

Estos ejercicios son colaborativos, ¡te necesitamos! Si encuentras algún error o falta de ortografía, por favor contribuye y repórtalo.

<p align="center">
<a href="https://www.youtube.com/watch?v=GjQEotj3t6Y&list=PLCVs_S8Skwp9_apbj_ls2euakDALiWqSN"><img src="https://github.com/4GeeksAcademy/python-beginner-programming-exercises/blob/master/python-intro.gif?raw=true"></a>
</p>

<!-- hide -->

## Instalación en un clic (recomendado)

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

> 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`
> 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`

## Instalación local:

1) Asegúrate de instalar [learnpack](https://learnpack.co),`node.js` version 14+ ypython version 3+. Este es el comando para instalarlearnpack:
1) Asegúrate de instalar [LearnPack](https://learnpack.co), node.js version 14+ yPython version 3+. Este es el comando para instalarLearnPack:

```sh
```bash
$ npm i learnpack -g && learnpack plugins:install learnpack-python
```

2) Clona o descarga este repositorio. Una vez que termines de descargar, encontrarásun carpeta nueva con un subdirectorio "exercises" que contiene los ejercicios.
2) Clona o descarga este repositorio. Una vez que termines de descargar, encontrarásuna carpeta nueva con un subdirectorio llamado "exercises" que contiene los ejercicios.

```sh
```bash
$ git clone https://github.com/4GeeksAcademy/python-functions-programming-exercises.git
```

3) Comienza el tutorial/ejercicios ejecutando el siguiente comando en la raíz del proyecto:

```sh
```bash
$ cd python-functions-programming-exercises
$ pip install pytest==4.4.2 mock pytest-testdox
$ learnpack start
```

<!-- endhide -->

## ¿Cómo están organizados los ejercicios?

Cada ejercicio es un pequeño proyecto en Python que contiene los siguientes archivos:

1. **app.py:** representa el archivo de entrada depython que será ejecutado en el computador.
1. **app.py:** representa el archivo de entrada dePython que será ejecutado en el computador.
2. **README.md:** contiene las instrucciones del ejercicio.
3. **test.py:** no tienes que abrir este archivo. Contiene los scripts de pruebas del ejercicio.
3. **test.py:** no tienes que abrir este archivo, contiene los scripts de pruebas del ejercicio.

> Nota: Estos ejercicios tienen calificación automática pero es un tanto rígida, te recomiendo ignorarlos tests, considéraloscomo unarecomendación o podrías frustrarte.
> Nota: Estos ejercicios tienen calificación automática. Los tests son muy rígidos y estrictos, mi recomendación es que no prestes demasiada atención alos tests y los uses solocomo unasugerencia o podrías frustrarte.

## Colaboradores

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

1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribución: (programador) 💻 (idea) 🤔, (build-tests) ⚠️, (pull-request-review) 🤓 (build-tutorial) ✅ (documentación) 📖
1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribución: (programador) 💻, (idea) 🤔, (build-tests) ⚠️, (pull-request-review) 🤓, (build-tutorial) ✅, (documentación) 📖

2. [Paolo (plucodev)](https://github.com/plucodev), contribución: (bug reports) 🐛, (programador), (traducción) 🌎
2. [Paolo (plucodev)](https://github.com/plucodev), contribución: (bug reports) 🐛, (programador) 💻, (traducción) 🌎

3. [Marco Gómez (marcogonzalo)](https://github.com/marcogonzalo), contribution: (bug reports) 🐛, (traducción) 🌎

Expand All@@ -82,4 +79,4 @@ Este proyecto sigue la especificación [all-contributors](https://github.com/ken

Este proyecto sigue la especificación [all-contributors](https://github.com/kentcdodds/all-contributors). ¡Todas las contribuciones son bienvenidas!

Este y otros ejercicios son usados para [aprender a programar](https://4geeksacademy.com/es/aprender-a-programar/aprender-a-programar-desde-cero) por parte de los alumnos de 4Geeks Academy [Coding Bootcamp](https://4geeksacademy.com/us/coding-bootcamp) realizado por [Alejandro Sánchez](https://twitter.com/alesanchezr) y muchos otros contribuyentes. Conoce más sobre nuestros [Curso de Programación](https://4geeksacademy.com/es/curso-de-programacion-desde-cero?lang=es) para convertirte en [Full Stack Developer](https://4geeksacademy.com/es/coding-bootcamps/desarrollador-full-stack/?lang=es), o nuestro [Data Science Bootcamp](https://4geeksacademy.com/es/coding-bootcamps/curso-datascience-machine-learning).
Este y otros ejercicios son usados para [aprender a programar](https://4geeksacademy.com/es/aprender-a-programar/aprender-a-programar-desde-cero) por parte de los alumnos de 4Geeks Academy [Coding Bootcamp](https://4geeksacademy.com/us/coding-bootcamp) realizado por [Alejandro Sánchez](https://twitter.com/alesanchezr) y muchos otros contribuyentes. Conoce más sobre nuestros [Cursos de Programación](https://4geeksacademy.com/es/curso-de-programacion-desde-cero?lang=es) para convertirte en [Full Stack Developer](https://4geeksacademy.com/es/coding-bootcamps/desarrollador-full-stack/?lang=es), o nuestro [Data Science Bootcamp](https://4geeksacademy.com/es/coding-bootcamps/curso-datascience-machine-learning).
36 changes: 16 additions & 20 deletionsREADME.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,9 +6,9 @@ By <a href="https://twitter.com/alesanchezr">@alesanchezr</a> and <a href="https
<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>
<!-- endhide -->

*Estas instrucciones [están disponibles en 🇪🇸 español](https://github.com/Lorenagubaira/python-functions-programming-exercises/blob/master/README.es.md) :es:*
*Estas instrucciones [están disponibles en 🇪🇸 español](https://github.com/4GeeksAcademy/python-functions-programming-exercises/blob/master/README.es.md) :es:*

Learn and practice Python Functions. You will see thefolowing concepts:
Learn and practice Python Functions. You will see thefollowing concepts:

1. Declaring a function.

Expand All@@ -18,65 +18,61 @@ Learn and practice Python Functions. You will see the folowing concepts:

4. Nest functions.

5.Function recursivity, and many other functional concepts.
5.Recursive functions and many other functional concepts.

> Note: The entire tutorial is 👆 interactive, ✅ auto-graded and with 📹 video tutorials.

These exercises were built in collaboration, we need you! If you find any bugs or misspells please contribute and report them.

<p align="center">
<a href="https://www.youtube.com/watch?v=GjQEotj3t6Y&list=PLCVs_S8Skwp9_apbj_ls2euakDALiWqSN"><img src="https://github.com/4GeeksAcademy/python-beginner-programming-exercises/blob/master/python-intro.gif?raw=true"></a>
</p>
These exercises were built in collaboration, we need you! If you find any bugs or misspellings, please contribute and report them.

<!-- hide -->

## One click installation (recommended):

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

> 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`
> 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`

## Local Installation

1) Make sure you have [learnpack](https://learnpack.co) installed,`node.js` version 14+ andpython version 3+. This is the command to installlearnpack:
1) Make sure you have [LearnPack](https://learnpack.co) installed, node.js version 14+, andPython version 3+. This is the command to installLearnPack:

```
```bash
$ npm i learnpack -g && learnpack plugins:install learnpack-python
```

2) Clone or download this repository. Once you finish downloading, you will find a new folder with a subdirectory "exercises" that contains all the exercises within.
2) Clone or download this repository. Once you finish downloading, you will find a new folder with a subdirectorycalled"exercises" that contains all the exercises within.

```
```bash
$ git clone https://github.com/4GeeksAcademy/python-functions-programming-exercises.git
```

3) Start the tutorial/exercises by running the following command from the root of the project:

```sh
```bash
$ cd python-functions-programming-exercises
$ pip install pytest==4.4.2 mock pytest-testdox
$ learnpack start
```


<!-- endhide -->

## How are the exercises organized?

Each exercise is a smallreact application containing the following files:
Each exercise is a smallReact application containing the following files:

1. **app.py:** represents the entrypython file that will be executed by the computer.
1. **app.py:** represents the entryPython file that will be executed by the computer.
2. **README.md:** contains exercise instructions.
3. **test.py:** you don't have to open this file, it contains the testing script for the exercise.

> Note: The exercises have automatic grading butits very rigid andstring, myrecomendation is toignorethe tests and use them only as arecomendation or youcan get frustrated.
> Note: The exercises have automatic grading, butit's very rigid andstrict, myrecommendation is tonot takethe teststoo seriousand use them only as asuggestion, or youmay get frustrated.

## Contributors

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

1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribution: (coder) 💻 (idea) 🤔, (build-tests) ⚠️, (pull-request-review) 👀 (build-tutorial) ✅ (documentation) 📖
1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribution: (coder) 💻, (idea) 🤔, (build-tests) ⚠️, (pull-request-review) 👀, (build-tutorial) ✅ (documentation) 📖

2. [Paolo (plucodev)](https://github.com/plucodev), contribution: (bug reports) 🐛,contribution:(coder), (translation) 🌎
2. [Paolo (plucodev)](https://github.com/plucodev), contribution: (bug reports) 🐛, (coder) 💻, (translation) 🌎

3. [Marco Gómez (marcogonzalo)](https://github.com/marcogonzalo), contribution: (bug reports) :🐛, (translation) 🌎

Expand Down
2 changes: 1 addition & 1 deletionlearn.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,7 +7,7 @@
"repository": "https://github.com/4GeeksAcademy/python-functions-programming-exercises",
"preview": "https://github.com/4GeeksAcademy/python-functions-programming-exercises/blob/master/preview.gif?raw=true",
"description": {
"us": "Learn and master functionalprograming by doing auto-graded interactive exercises.",
"us": "Learn and master functionalprogramming by doing auto-graded interactive exercises.",
"es": "Aprende y domina funciones en Python haciendo ejercicios interactivos y auto-evaluados."
},
"duration": 10,
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp