Check/ improve simple Python Code

Creating function for AWS API Gateway endpoint: import jsonimport random def lambda_handler(event, context):    # TODO implement    Cheeses = [“fromage”, “”, “formaggio”, “ost”]        which_one = range(0, len(Cheeses), 1)    return {        ‘statusCode’: 200,        ‘body’: json.dumps(Cheeses[which_one]), “headers”: {}, “isbase64Encoded”; “false” }

web scraping

Scrape university websites (below) to create a data set of professors working there (name, date of birth, year when phD obtained, University where PhD was obtained). https://unimap.unipi.it/cercapersone/cercapersone.php https://www.docenti.unina.it/#!/search http://www.uniroma3.it/persone/ZzRsSHkrcGZPa25vVG5OdzZqeXhqOUx1TVE0cXhUdlcvM3o1blJVb1FzWT0=/ (python file)

C++ Programming for Financial Engineering

Need someone so take 10 homeworks and 10 quizzes in C++ Programming course offered by Quant Net. Please understand that I am a full time student and dont have money so please quote based on my affordability. Also please only contact if you have done any Quant Net courses, C++ …

Coding a B+ Tree

Implement a DBTable and the BTree classes. The DBTable class implements the basic parts of a database table and the BTree class implements a B+Tree. The DBTable must use the B+Tree to find rows in the table. Every DBTable method will use Btree. The assignment also comes with an outline …

Assignment 1: Boing

hi ! this is a relatively basic java based programming assignment that is due in 14 hours. the code you write does not have to be very professional or well thought out as long as the main objective of the assignment is met. if you could try and make it …

complete 2 methods to evaluate arithmetic expressions in java

The assignment is to complete 2 methods: makeVariableLists – This method populates the vars and arrays lists with Variable and Array objects, respectively, for the simple variable and arrays that appear in the expression. evaluate – This method evaluates the expression. Everything else except for these 2 methods is already …

Graph Algorithms

I have a project that I need to be implemented in C. It requires an implementation of a given priority queue specification and then using that to implement 4 algorithms: BFS, Bellman-Ford, Dijkstra’s and A*. Project files have been given and it just requires the interfaces in pq.h and sp_algorithms.h …

Assignment 1: Bash Scripting

QUESTION 2Write a bash script that monitors in real time the sizes of regular files in a specified folders. The folder name should be provided as an argument when calling the script. The folder must exist in the same working directory where the script is located. Ensure that the script …

Move To Front List

Keep it as simple as possible, don’t use extremely complex methods unless absolutely necessary. This assignment is not huge nor extremely complicated. Do not change the method’s signature in any way, just fill in the code under the method’s signature. The only file that should be edited is MoveToFrontList.java, the …

Move To Front List

Keep it as simple as possible, don’t use extremely complex methods unless absolutely necessary. This assignment is not huge nor extremely complicated. Do not change the method’s signature in any way, just fill in the code under the method’s signature. The only file that should be edited is MoveToFrontList.java, the …