Posts by user55770 • 41 points
2 posts
-
2
votes2
answers1365
viewsQ: How to add the result that is inside the Split function in python?
Input value: 6+5 Example: inside the variable data are the numbers ['6', '5'], print (data).split('+') how do I print the sum of these values?…
-
2
votes1
answer181
viewsQ: Help with client/server socket with mathematical python sum interactions
I am studying about socket and wanted to make a socket that when the client type 5 and another 5 the server responds 10 and returns to the client the answer. How I change my code to have this…