You are on page 1of 1

BEGIN PYTHON MATH / CONTACTS / DICTIONARY

row = 1
rowmax = 20
col = 1
colmax = 10
Create a database table of rowmax rows by colmax
columns.
Set each box to zero.
While True:
For i in the range of rowmax
for j in the range of colmax
ask user for input
if new database, then add user input
into database
else ask user whether to add or just
for search
if for searching:
user input found
print “You search is found.
More search?”
if user wants to stop searching:
Break.
else print “You search is not found.
More search?
END PYTHON MATH / CONTACTS / DICTIONARY

You might also like