Skip to content
Snippets Groups Projects
Commit 8b3dbb48 authored by Alexandra Serrano Mendoza's avatar Alexandra Serrano Mendoza
Browse files

Upload New File

parent 3d2d0328
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id: tags:
# Tarea 01
%% Cell type:markdown id: tags:
La primer tarea del *semillero de astropartículas* consiste en crear de manera colaborativa un *DataFrame Pandas* con sus nombres, edades y la fecha de edición.
Instrucciones:
- Buscar en este *Notebok* la sección con su nombre.
- Agregar a la lista `teamSemillero` su nombre, edad y la fecha de edición, pueden hacerlo con: `teamSemillero.append(['Frailejón Ernesto Pérez', 25, datetime.datetime.now()])`
- Guardar los cambios en el archivo.
- Crear un commit con los cambios realizados, se sugiere en el comentario del commit usar "Entrega Nombre", ejemplo: "Entrega Frailejón Ernesto Pérez".
- Subir su aporte al repositorio.
> Su rol *Developer* solo le permitirá contribuir creando una rama y haciendo un [*Merge Request*](https://docs.gitlab.com/ee/user/project/merge_requests/)
Se recomienda revisar el libro **Pro Git** disponible en [https://git-scm.com/book/en/v2](https://git-scm.com/book/en/v2)
%% Cell type:markdown id: tags:
## Librerias a usar
%% Cell type:code id: tags:
``` python
import datetime
import pandas as pd
```
%% Cell type:markdown id: tags:
## Empezamos
%% Cell type:code id: tags:
``` python
teamSemillero = [['Alex M', 30, datetime.datetime.now()]]
```
%% Cell type:markdown id: tags:
____
%% Cell type:markdown id: tags:
## Sus contribuciones
%% Cell type:markdown id: tags:
### Sharon Tatiana Navarro Suárez
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Nicolas Mantilla Molina
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Jorge Alfredo Jaimes Teheran
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Jhonatan S. Blanco Melo
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Luigui Joel Miranda leuro
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Alexandra Serrano Mendoza
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Brayan Santiago Amorocho Lizcano
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Sofia Cárdenas
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Santiago Andrés Montes Camacho
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Sebastian Casas Parra
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Gabriela Sánchez Ariza
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Juan Diego Figueroa Hernández
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Jurianny Andica Corredor
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Angela Sofía Barajas Ochoa
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Brayan Barajas Ochoa
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Karen Sarat Anaya Verdurgo
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Kevin Joel Dlaikan Castillo
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Felipe Daza
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Juan Diego Giraldo Lozano
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Juan Pablo Díaz Portilla
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Alejandro Jose Espinel Pérez
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Juan Felipe León Pulgarin
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
### Juan Fernando Cubillos Rueda
%% Cell type:code id: tags:
``` python
# Acá su aporte
```
%% Cell type:markdown id: tags:
___
%% Cell type:markdown id: tags:
## Recogiendo la información
%% Cell type:code id: tags:
``` python
#df = pd.DataFrame(teamSemillero,columns=['Nombre','Edad', 'Edición'])
#print (df)
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment