testScore = [] #array defined
print "Enter the number of test scores:",
numTests = int(raw_input())
testScore = [numTests]
numTests = 3
print "Enter the number of test scores:",
numTests = int(raw_input())
testScore = [numTests]
numTests = 3
print "Enter the number of test scores:",
num = int(raw_input())
numTests = num
testScore = [numTests]
name = ['J', 'e', 'f', 'f', '\0']
print name
name = ['J', 'e', 'f', 'f']
print name
testScore = []
print "Enter test score #1: ",
testScore.append(int(raw_input()))
print "Enter test score #2: ",
testScore.append(int(raw_input()))
print "Enter test score #3: ",
testScore.append(int(raw_input()))
print "Test score #1: ", testScore[0]
print "Test score #2: ", testScore[1]
print "Test score #3: ", testScore[2]
print "Enter test score #1: ",
testScore1 = int(raw_input())
print "Enter test score #2: ",
testScore2 = int(raw_input())
print "Enter test score #3: ",
testScore3 = int(raw_input())
print "Test score #1: ", testScore1
print "Test score #2: ", testScore2
print "Test score #3: ", testScore3
testScore = []
for i in range(3):
print "Enter testScore #", i+1, ": ",
testScore.append(int(raw_input()))
for i in range(3):
print "Test Score #", i+1, ": ", testScore[i]
MAX = 3
testScore = []
for i in range(MAX):
print "Enter testScore #", i+1, ": ",
testScore.append(int(raw_input()))
for i in range(MAX):
print "Test Score #", i+1, ": ", testScore[i]
MAX = 3
testScore = []
for i in range(MAX+1):
print "Enter testScore #", i+1, ": ",
testScore.append(int(raw_input()))
for i in range(MAX+1):
print "Test Score #", i+1, ": ", testScore[i]
MAX = 3
grades = [0,0,0]
for i in range(MAX):
print "Enter Garde #", i+1, ": ",
grades[i] = int(raw_input())
name = ['J','e','f','f']
print "Enter your name: ",
name = raw_input()
print "Your name is: ", name
MAX = 3
testScore = []
for i in range(MAX):
print "Enter test score #", i + 1, ": ",
testScore.append(int(raw_input()))
print "The test scores are: ", testScore
testScore = []
testScore = raw_input()
name = ['J','e','f','f']
print "Enter your name: ",
name = raw_input()
print "Your name is: ", name
print "Enter your name: ",
name = raw_input()
print "Your name is: ", name
print "Enter your name: ",
name = raw_input()
print "Your name is: ", name
MAX = 3
testScore = []
for i in range(MAX):
print "Enter test score #", i + 1, ": ",
testScore.append(int(raw_input()))
for i in range(MAX):
print "Test score #", i + 1, ": ", testScore[i]
MAX = 3
def assignValues(tests, num):
for i in range(num):
print "Enter test score #", i + 1, ": ",
tests.append(int(raw_input()))
def displayValues(scores, elems):
for i in range(elems):
print "Test score #", i + 1, ": ", scores[i]
testScore = []
assignValues(testScore, MAX)
displayValues(testScore, MAX)