This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
usuario1 = { | |
username: 'user1', | |
gender: 'female', | |
name: 'Katie Chavez', | |
age: 26, | |
email: '[email protected]', | |
address: { | |
city: 'Aberdeen', | |
state: 'Lothian', | |
contry: 'United Kingdom' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name | age | gender | country | |||
---|---|---|---|---|---|---|
0 | Mr Jerome Thomas | 73 | male | United States | [email protected] | |
1 | Mr Gary Berry | 70 | male | United Kingdom | [email protected] | |
2 | Mr Noham Dubois | 40 | male | France | [email protected] | |
3 | Mrs Naja Johansen | 63 | female | Denmark | [email protected] | |
4 | Mr Damien Marchand | 61 | male | France | [email protected] | |
5 | Mr Harri Althoff | 56 | male | Germany | [email protected] | |
6 | Mr Noah Olsen | 40 | male | Denmark | [email protected] | |
7 | Ms Britta Weinert | 35 | female | Germany | [email protected] | |
8 | Mr Jakob Russell | 44 | male | Ireland | [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0,Mr Jerome Thomas,73,male,United States,[email protected] | |
1,Mr Gary Berry,70,male,United Kingdom,[email protected] | |
2,Mr Noham Dubois,40,male,France,[email protected] | |
3,Mrs Naja Johansen,63,female,Denmark,[email protected] | |
4,Mr Damien Marchand,61,male,France,[email protected] | |
5,Mr Harri Althoff,56,male,Germany,[email protected] | |
6,Mr Noah Olsen,40,male,Denmark,[email protected] | |
7,Ms Britta Weinert,35,female,Germany,[email protected] | |
8,Mr Jakob Russell,44,male,Ireland,[email protected] | |
9,Miss Emilia Laitinen,53,female,Finland,[email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"users": [ | |
{ | |
"nombre": "Eduardo", | |
"edad": 27 | |
}, | |
{ | |
"nombre": "Raquel", | |
"edad": 29 | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"users": [ | |
{ | |
"name": "Eduardo", | |
"age": 27, | |
"email": "[email protected]" | |
}, | |
{ | |
"name": "Raquel", | |
"age": 29, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
OlderNewer