-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathudpservercat.py
51 lines (38 loc) · 1.05 KB
/
udpservercat.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import socket, sys, json, math
localIP = "127.0.0.1"
localPort = 20001
bufferSize = 1024
msgFromServer = "hello UDP client"
bytesToSend = str.encode(msgFromServer)
#create a datgram socket
udpServerSocket = socket.socket(family=socket.AF_INET, type=socket.SOCK_DGRAM)
#bind address and ip
udpServerSocket.bind((localIP, localPort))
print("UDP server up and listening")
def sumAlternate(arr, n):
sum1 = 0
sum2 = 0
alt = 0
i = 0
while i < n * n :
# count the elements at
# even places
if (i % 2 == 0):
sum1 += math.factorial(arr + i)
else: # count the elements
# at odd places
sum2 += math.factorial(arr + i)
i += 1
alt = str(sum2)
return alt
while True:
data = c.recv(1024)
data = json.loads(data.decode())
matrix_a = data.get("a")
rows = data.get("c")
column = data.get("d")
result = sumAlternate(matrix_a[0][0],rows)
print(result)
response = json.dumps({"response":result})
c.send(response)
c.close()