Skip to content

Instantly share code, notes, and snippets.

View eduardogpg's full-sized avatar
🏠
Working from home

Eduardo Ismael García Pérez eduardogpg

🏠
Working from home
View GitHub Profile
usuario1 = {
username: 'user1',
gender: 'female',
name: 'Katie Chavez',
age: 26,
email: 'user1@blueproject.com',
address: {
city: 'Aberdeen',
state: 'Lothian',
contry: 'United Kingdom'
name age gender country email
0 Mr Jerome Thomas 73 male United States jerome.thomas@example.com
1 Mr Gary Berry 70 male United Kingdom gary.berry@example.com
2 Mr Noham Dubois 40 male France noham.dubois@example.com
3 Mrs Naja Johansen 63 female Denmark naja.johansen@example.com
4 Mr Damien Marchand 61 male France damien.marchand@example.com
5 Mr Harri Althoff 56 male Germany harri.althoff@example.com
6 Mr Noah Olsen 40 male Denmark noah.olsen@example.com
7 Ms Britta Weinert 35 female Germany britta.weinert@example.com
8 Mr Jakob Russell 44 male Ireland jakob.russell@example.com
from flask import Flask
from flask import render_template
app = Flask (__name__)
@app.route('/')
def index():
return 'Hola'
@app.route('/usuario/<last_name>/<name>/<int:age>')
def usuario (last_name, name, age):
0,Mr Jerome Thomas,73,male,United States,jerome.thomas@example.com
1,Mr Gary Berry,70,male,United Kingdom,gary.berry@example.com
2,Mr Noham Dubois,40,male,France,noham.dubois@example.com
3,Mrs Naja Johansen,63,female,Denmark,naja.johansen@example.com
4,Mr Damien Marchand,61,male,France,damien.marchand@example.com
5,Mr Harri Althoff,56,male,Germany,harri.althoff@example.com
6,Mr Noah Olsen,40,male,Denmark,noah.olsen@example.com
7,Ms Britta Weinert,35,female,Germany,britta.weinert@example.com
8,Mr Jakob Russell,44,male,Ireland,jakob.russell@example.com
9,Miss Emilia Laitinen,53,female,Finland,emilia.laitinen@example.com
143.200.119.151
173.80.163.60
89.228.175.19
6.74.140.22
130.253.110.153
63.141.14.240
175.88.83.79
77.177.237.20
104.101.78.239
113.54.87.231
method currency mount
SPEI Transfer mxn 5000
SPEI Transfer mxn 2000
SPEI Transfer mxn 800
SPEI Transfer mxn 4000
SPEI Transfer mxn 2000
SPEI Transfer mxn 10000
SPEI Transfer mxn 7500
SPEI Transfer mxn 1300
SPEI Transfer mxn 1500
{
"users": [
{
"nombre": "Eduardo",
"edad": 27
},
{
"nombre": "Raquel",
"edad": 29
},
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
VERSION = '0.0.1'
DESCRIPTION = 'Little description'
{
"users": [
{
"name": "Eduardo",
"age": 27,
"email": "eduardo@example.com"
},
{
"name": "Raquel",
"age": 29,
def buble_sort(elements):
"""Sort an integer array using Buble Algorthim.
>>> buble_sort([10, 2, 1, 2, 4, 5, 7, 9])
[1, 2, 2, 4, 5, 7, 9, 10]
"""
swap = True
while swap: