San Miguel District, La Mar

San Miguel District is one of eight districts of the province La Mar in Peru.[1]

San Miguel
Country Peru
RegionAyacucho
ProvinceLa Mar
CapitalSan Miguel
Government
  MayorEulogio Vila Montaño
Area
  Total902.98 km2 (348.64 sq mi)
Elevation
2,661 m (8,730 ft)
Population
 (2005 census)
  Total19,185
  Density21/km2 (55/sq mi)
Time zoneUTC-5 (PET)
UBIGEO050501

Ethnic groups

The people in the district are mainly indigenous citizens of Quechua descent. Quechua is the language which the majority of the population (84.03%) learnt to speak in childhood, 15.64% of the residents started speaking using the Spanish language (2007 Peru Census).[2]

gollark: It was to prove to <@!341618941317349376> that COMPILED DOES NOT MEAN FAST.
gollark: Yep!
gollark: Execute THIS!```pythonimport argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: Length limits, you know.
gollark: But this is shorter.

References

  1. (in Spanish) Instituto Nacional de Estadística e Informática. Banco de Información Distrital Archived 2008-04-23 at the Wayback Machine. Retrieved April 11, 2008.
  2. inei.gob.pe Archived 2013-01-27 at the Wayback Machine INEI, Peru, Censos Nacionales 2007, Frequencias: Preguntas de Población: Idioma o lengua con el que aprendió hablar (in Spanish)

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.