Using pseudocode, declare an array called ‘marks’ that will hold the following four values: 20, 60, 30, 90
# Using pseudocode, declare an array called ‘marks’ that will hold the
# following four values: 20, 60, 30, 90
'''
Pseudocode:
- Declare an array called marks
- put marks as 20, 60, 30 and 90 as marks = [20, 60, 30, 90]
- Display the marks using print command
'''
marks = [20, 60, 30, 90]
print("Marks = ",marks)
Comments
Leave a comment