[SOLVED] 代写 python Problems:

30 $

File Name: 代写_python_Problems:.zip
File Size: 216.66 KB

SKU: 7414916833 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


Problems:
Develop two Python scripts: one a server; the other a client that will use the server. You will use the polynomial function module “polynomials.py”. Do not include those functions directly into your server code, but import them into the server (see Additional Notes below).
Server (50 points)
The server will listen on a specific port number (ex. 12345). It will carry out polynomial computations using the functions in the provided module. Requests are in one of two formats:
•Evaluate Request
•Request starts with ‘E’
•Followed by an argument value
•Followed by a single space
•Followed by the coefficients of a polynomial, separated by single spaces
•Bisection Request
•Requests starts with ‘S’
•Followed by ‘a’, ‘b’, polynomial, tolerance separated by single spaces
For example, here is a sample evaluate request:
E1.0 -945 1689 -950 230 -25 1
This is a request to evaluate the polynomial
-945 + 1689x – 950×2 + 230×3 – 25×4 + x5
at the value x = 1.0
Here is a sample bisection request:
S0 2 -945 1689 -950 230 -25 1 1e-15
This requests the use of the bisection function with a = 0, b = 2, tolerance = 1e-15 and using the same polynomial as in the evaluate example.
The server will create a response to the client for each request. The first character of the response will indicate the type of response:
•‘X’ indicates an error response. The remainder of the response is an error message
•‘E’ indicates a successful response to an evaluate request. This is immediately followed by the value returned by the evaluate function
•‘S’ indicates a successful response to a bisection request. This is immediately followed by the value returned by the bisection function
The response to the example evaluate request would be2
E2.2737367544323206e-13
The response to the example bisection request would be
S1.0000000000000004
The server should operate in a continuing manner: the server should repeatedly accept a connection, get a request, send a response and close the connection to the client. In particular, only one request is handled for each connection.
Server Error Checking (20 points)
The server should respond properly in the case of an erroneous request. Not only should the server not ‘crash’ but the server should send back an appropriate error response to the client.
For example, the request string
E1.0 -945xx 1689 -950 230 -25 1
should result in a response something like this:
Xinvalid format numeric data
Note the ‘X’ that flags this as an error message.
Include error checking in the server. Also document the error checking by including a string at the end of the server code that describes the errors caught. That string might look something like this (to start with):
”’
Invalid numeric format

Wrong number of fields in request

”’
Client (30 points)
You are strongly urged to write small clients that will test aspects of your server as you work on that. Once you are satisfied that you can send an evaluation request and get a good result and also send a bisection request and get a good result then work on the client described here.
The client should define four variables at the beginning: the first, named poly with a list of numbers representing the coefficients of apolynomial;3 another, named ‘a’, representing a value a to use in bisection; another, named b representing a value b to use in bisection; another, named tol representing a tolerance value to use in bisection.
Note: in testing your client, the values assigned to these variables will be changed so make sure they are evident.
The client should first make a request to the server for a bisection. Provide the data defined in the variables just described. Display the value returned.
The result from the first request should be used as the x value in another request to the server to evaluate the polynomial (defined in the variable described above).
The result of the evaluation should be displayed. This value should be very close to 0.
Additional notes:
•The client will do not numeric computations at all, it is just sending and receiving data. The most it does is get substrings and concatenate strings.
•The result is in scientific notation. The value of the result is very near 0.
•This value should not be string, it should be a list of numeric values.

Test Code:
Messages Sent by Client:
testing_strings = [“E1.0 -945 1689 -950 230 -25 1”,
“S0 2 -945 1689 -950 230 -25 1 1e-15”,
“G4.1 0 0”,
“4 1 0”,
“E1.0”,
“S1.0”,
“S0 2 -945 1689 -950 230 -25 1 -1e-15”,
“Not a number”,
“S0 2 -945 1689 -950 230 -25 1 0”,
“S0 2 -945 1689 -950 230 G 1 1e-15”]
Response from Server:
Sending request “E1.0 -945 1689 -950 230 -25 1”
Received response E0.0

Sending request “S0 2 -945 1689 -950 230 -25 1 1e-15”
Received response S1.0000000000000004

Sending request “G4.1 0 0”
Received response XIncorrect command type

Sending request “4 1 0”
Received response Xcould not convert string to float:

Sending request “E1.0”
Received response XToo few arguments

Sending request “S1.0”
Received response XToo few arguments

Sending request “S0 2 -945 1689 -950 230 -25 1 -1e-15”
Received response XInvalid tolerance

Sending request “Not a number”
Received response Xcould not convert string to float: ‘ot’

Sending request “S0 2 -945 1689 -950 230 -25 1 0”
Received response XInvalid tolerance

Sending request “S0 2 -945 1689 -950 230 G 1 1e-15”
Received response Xcould not convert string to float: ‘G’

Submitting the Assignment
The assignment should have two scripts: one for the server, one for the client. The assignment should include the polynomials module.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] 代写 python Problems:
30 $