Home Help & Support Search Tips Options: Case:



   Need A Tutor?    |   Need Homework Help?                                                                             Help and Support     | Join or Cancel

Exam  1     2     3     4     5     6     7    8     9    10     Midterm   1    2     Final Exam  1   2
Graded Program Assignment   
1   2    3    4    5    6    7    8    9           Python Compiler

Computer Programming
Assignment 8
Arrays/Lists


Assignment #08 – Creating and sorting an array / List [USING PYTHON]
Description for Assignment #08 – Using Python to create an array / list containing names.
*You will enter the names via the keyboard.

The program is to use at a loop per function below:
·         Populate or load data inside an array
·         Display / write items in the array
·        
Sort the array

Create_Name_LIST_FOR_LOOP.py

#==================================================================================
# PROGRAMMER:   
# PROGRAM NAME:  Assignment #08 - Create name List - For Loop
# DATE WRITTEN: 
# PURPOSE:       Use For Loop to create an array/list in Python
#==================================================================================
 
# A For Loop example of creating an array/list using Python
 
#===================================================================================================
 
# Initialize variables and array / list
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Create / Populate the name list/array using a for loop
# Create a list of names to be stored simultaneously in RAM
numItems = int(input("How many names do you wish to enter? ")); # establishes an ending value
 
for count in range (0, numItems, 1): # "Enter name of Customer " [1]: "
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Displays all the items in the array / list such as a list of names...
   Join Now For Answers & Help!!!
 
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Sort the list in order from the lowest to the highest value
   Join Now For Answers & Help!!!
 
#====================================================================================================
   
# Displays all the items in the array / list such as a list of names...
   Join Now For Answers & Help!!!
 
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# End Program

 
Create_Name_LIST_FOR_LOOP_FUNCTIONS.py
 
#==================================================================================
# PROGRAMMER:   
# PROGRAM NAME:  Assignment #08 - Create Name List For Loop Functions
# DATE WRITTEN: 
# PURPOSE:       Use For Loop to create an array/list in Python using Functions
#==================================================================================
 
# An example of creating an array/list using Python
 
#===================================================================================================
 
# Function to Create / Populate the name list/array using a for loop
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Displays all the items in the array / list such as a list of names...
   Join Now For Answers & Help!!!
       
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Function to Sort the list in order from the lowest to the highest value
def sortNames(count, name, numItems):
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Function to Display names as a sorted list
def displaySortedNameList(count, name, numItems):
   Join Now For Answers & Help!!!
 
print("-" * 60); # displays 60 dashes to make a separating line
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
        # Initialize variables array / lists
   Join Now For Answers & Help!!!
 
   Join Now For Answers & Help!!!
 
#====================================================================================================
# End Program

 

 

Create_Name_LIST_WHILE_LOOP.py

#==================================================================================
# PROGRAMMER:   
# PROGRAM NAME:  Assignment #08 - Create name List While Loop
# DATE WRITTEN: 
# PURPOSE:       Use While Loop to create an array/list in Python
#==================================================================================
 
# An example of creating an array/list using Python
 
#===================================================================================================
 
# Initialize variables and array / list
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Create / Populate the name list/array using a while loop
# Create a list of names to be stored simultaneously in RAM
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Displays all the items in the array / list such as a list of names...
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Sort the list in order from the lowest to the highest value
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Displays all the items in the array / list such as a list of names...
   Join Now For Answers & Help!!!ine
 
#====================================================================================================
#END PROGRAM

Create_Name_LIST_WHILE_LOOP_FUNCTIONS.py

#==================================================================================
# PROGRAMMER:   
# PROGRAM NAME:  Assignment #08 - Create Name List While Loop Functions
# DATE WRITTEN: 
# PURPOSE:       Use While Loop to create an array/list in Python using Functions
#==================================================================================
 
# An example of creating an array/list using Python
 
#====================================================================================================
 
# Function to Create / Populate the name list/array using a while loop
# Create a list of names to be stored simultaneously in RAM
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Function to Display all the items in the array / list such as a list of name
   Join Now For Answers & Help!!!
       
    # end displayUnsortedNameList function
 
#====================================================================================================
 
# Function to Sort the list in order from the lowest to the highest value
   Join Now For Answers & Help!!!
 
#====================================================================================================
 
# Function to Display the names as a sorted list
   Join Now For Answers & Help!!!
        #====================================================================================================
        # MAIN FUNCTION TO CALL ALL CUSTOMIZED FUNCTIONS
        #====================================================================================================
        # Initialize variables array / lists
   Join Now For Answers & Help!!!y
 
numItems =    Join Now For Answers & Help!!!e
 
   Join Now For Answers & Help!!!
 
#====================================================================================================
# END PROGRAM


Exam  1     2     3     4     5     6     7    8     9    10     Midterm   1    2     Final Exam  1   2
Graded Program Assignment   
1   2    3    4    5    6    7    8    9           Python Compiler


Home
Accounting & Finance Business
Computer Science General Studies Math Sciences
Civics Exam
Everything Else
Help & Support
Join/Cancel
Contact Us
 Login / Log Out