Skip to content
Snippets Groups Projects

Update ejercicio.ipynb

Open Alexandra Serrano Mendoza requested to merge serranoa-main-patch-40644 into main
1 file
+ 0
292
Compare changes
  • Side-by-side
  • Inline
+ 0
292
%% 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
teamSemillero.append(['Frailejón Ernesto Pérez', 25, datetime.datetime.now()])
%% 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)
Loading