Pseudocode to python: please help convert this pseudocode to python code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Pseudocode to python: please help convert this pseudocode to python code

StudentMarksTest1[1:30] StudentMarksTest2[1:30] StudentMarksTest3[1:30] StudentTotalScore[1:30] Sum  0 FOR Count  1 TO 30 INPUT Name StudentName[Count]  Name INPUT Mark1, Mark2, Mark3 StudentMarksTest1[Count]  Mark1 StudentMarksTest2[Count]  Mark2 StudentMarksTest3[Count]  Mark3 Total  Mark1 + Mark2 + Mark3 StudentTotalScore[Count]  Total Sum  Sum + Total PRINT StudentName[Count], StudentTotalScore[Count] NEXT Count ClassAverage = Sum/30 PRINT ClassAverage

23rd Dec 2017, 8:38 AM
Hannah Joshua
2 Answers
0
Lemme have a try...
23rd Dec 2017, 12:11 PM
Nonov Urbiznes
Nonov Urbiznes - avatar
0
OK, here we go. Please let me know if it's good enough. I'm pretty sure there's a lot to improve, though. https://code.sololearn.com/cNj49XQJBcwN/?ref=app
23rd Dec 2017, 3:17 PM
Nonov Urbiznes
Nonov Urbiznes - avatar