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 6
More Loops

# ===============================================================================================================
# PROGRAMMER:   
# PROGRAM NAME:  Assignment_06_MORE_LOOPS_revision_FOR LOOP BUG COLLECTION
# DATE WRITTEN: 
# PURPOSE:       USE FOR LOOP TO CAPTURE DAILY BUG COLLECTION AND
#                ACCUMULATE THE TOTAL NUMBER OF BUGS COLLECTED.
# ===============================================================================================================
# Declare / Define variables and data types
# ===============================================================================================================
# Initialize processed variables
totalBugs = 0;
 
# ===============================================================================================================
print("=" * 85);
# Define the ending / target value
print("How many days will you collect bugs? ");
howMany = int(input());
print("=" * 85);
# ===============================================================================================================
# Initialize / test lcv against the target value
 
for days in range(1, howMany + 1, 1):
    # Input number of bugs collected per day
    print("How many bugs did you collect on day #" + format(days, "2d"));
    bugs = int(input());
   
    # Accumulates or keep a running sum of the number of bugs collected
    totalBugs = totalBugs + bugs;
    # end For Loop
   
# ===============================================================================================================
# Output the results
print(); # displays a blank line
print("=" * 85);
print("A total of" + format(totalBugs, "2d") + " bugs were collected in" + format(days, "2d") + " days.");
print("=" * 85);
print(); # displays a blank line
print("Assignment #06 was created and submitted by Robert Zink");
print("=" * 85);
# ===============================================================================================================
# END PROGRAM
 


 
# ===============================================================================================================
# PROGRAMMER:   
# PROGRAM NAME:  FOR LOOP CHECK DATA VALUE - BUG COLLECTION
# DATE WRITTEN:  6/11/2019
# PURPOSE:       USE FOR LOOP TO CAPTURE DAILY BUG COLLECTION, CHECK FOR POSITIVE DATA VALUE
#                AND ACCUMULATE THE TOTAL NUMBER OF BUGS COLLECTED.
# ===============================================================================================================
# Declare / Define variables and data types
# ===============================================================================================================
# Initialize processed variables
totalBugs = 0;
 
# ===============================================================================================================
print("=" * 85);
# Define the ending / target value and check to make sure the values are numerical and positive numbers
while True:
    try:
        print("How many days will bugs be collected? ");
        howMany = int(input());
    except ValueError:
        print("Wrong data type! - Please Re-enter positive numerical values\n");
        continue;
   
    else:
        if (howMany <= 0):
            print("Wrong data type! [Positive value type only] Please Re-enter positive numerical values\n");
            continue;
        break;
 
print("=" * 85);
# ===============================================================================================================
for days in range(1, howMany + 1, 1):
   
    # Input number of bugs collected daily & check to make sure the values are numerical and positive numbers
    while True:
        try:
            print("How many bugs did you collect on day # " + format(days, "2d") + ": ");
            bugs = int(input());
        except ValueError:
            print("Wrong data type! - Please Re-enter positive numerical values\n");
            continue;
        else:
            if (bugs <= 0):
                print("Wrong data type! [Positive value type only] Please Re-enter positive numerical values\n");
                continue;
            break;
 
    # Accumulates or keep a running sum of the number of bugs collected
    totalBugs = totalBugs + bugs;
    # end For Loop
# Output the results
# ===============================================================================================================
# Output the results
print(); # displays a blank line
print("=" * 85);
print("A total of" + format(totalBugs, "2d") + " bugs were collected in" + format(days, "2d") + " days.");
print("=" * 85);
print(); # displays a blank line
print("Assignment #06 was created and submitted by Robert Zink");
print("=" * 85);
# ===============================================================================================================
# END PROGRAM


# ===============================================================================================================
# PROGRAMMER: 
# PROGRAM NAME:  FOR LOOP FILES: BUG COLLECTION
# DATE WRITTEN:
# PURPOSE: USE FOR LOOP TO CAPTURE DAILY BUG COLLECTION, ACCUMULATE TOTAL NUMBER
#                       OF BUGS COLLECTED, CHECK FOR POSITIVE DATA, AND OUTPUT TO EXTERNAL FILE.
# ===============================================================================================================
# Declare / Define variables and data types
#================================================================================================================
# Create a file to write the result to
# open or create the external file
outFileName = input("Please type the name of the file where you wish to write the output "\
                          "\"end the file with .txt\" -->");
outFile = open(outFileName, "w");
# ===============================================================================================================
# Initialize processed variables
totalBugs = 0;
 
# ===============================================================================================================
print("=" * 85);
# Define the ending / target value and check to make sure the values are numerical and positive numbers
while True:
    try:
        print("How many days will bugs be collected? ");
        howMany = int(input());
    except ValueError:
        print("Wrong data type! - Please Re-enter positive numerical values\n");
        continue;
   
    else:
        if (howMany <= 0):
            print("Wrong data type! [Positive value type only] Please Re-enter positive numerical values\n ");
            continue;
        break;
 
print("=" * 85);
# ===============================================================================================================
for days in range(1, howMany + 1, 1):
   
    # Input number of bugs collected daily & check to make sure the values are numerical and positive numbers
    while True:
        try:
            print("How many bugs did you collect on day # " + format(days, "2d") + ": ");
            bugs = int(input());
        except ValueError:
            print("Wrong data type! - Please Re-enter positive numerical values\n");
            continue;
        else:
            if (bugs <= 0):
                print("Wrong data type! [Positive value type only] Please Re-enter positive numerical values\n");
                continue;
            break;
 
    # Accumulates or keep a running sum of the number of bugs collected
    totalBugs = totalBugs + bugs;
    # end For Loop
# Output the results
# ===============================================================================================================
# write the results to an output file name designated by the user
outFile.write("\n"); # displays a blank line
outFile.write("=" * 85 + "\n");
outFile.write("A total of " + format(totalBugs, "2d") + " bugs were collected in" + format(days, "2d") + " days.\n");
outFile.write("=" * 85 + "\n");
outFile.write("\n"); # displays a blank line
outFile.write("Assignment #06 was created and submitted by Robert Zink::\n");
outFile.write("=" * 85 + "\n");
 
outFile.close(); # closes the newly created external output file
# ===============================================================================================================
# END PROGRAM


#=============================================================================================================
# PROGRAMMER:   
# PROGRAM NAME:  While Loop Bug Collection
# DATE WRITTEN:  
# PURPOSE: USE WHILE LOOP TO CAPTURE DAILY BUG COLLECTION AND
#                      ACCUMULATE THE TOTAL NUMBER OF BUGS COLLECTED.
#=============================================================================================================
# Declare / Define variables and data types
#=============================================================================================================
# INITIALIZE VARIABLES
# Define and Initialize lcv days
print("Do you wish to capture a daily bug collection count? <type  'Y' or 'y'>  [otherwise type 'no'] ");
answer = input();
 
# While loop to do more than one bug collection
while answer == "y" or answer == "Y":
   
    #=========================================================================================================
    # Declare / Define variables and data types
    # INPUT STATEMENTS
    totalBugs = 0;
   
    #=========================================================================================================
    # Define the ending / target value
    # initialize processed variable
    print("How many days will you collect bugs? ");
    howMany = int(input());
    for days in range(1, howMany + 1, 1):
       
        # Input number of bugs collected per day
        print("Enter the number of bugs collected for day # " + format(days, "2d"));
        bugs = int(input());
       
        # Accumulates or keeps a running sum of the number of bugs collected
        totalBugs = totalBugs + bugs;
        print("A total of " + format(totalBugs, "2d") + " bugs was/were collected in " + format(days, "2d") + " days.");
    print("=" * 85);
    print("Do you wish to capture a daily bug collection count? <type  'Y' or 'y'>  [otherwise type 'no'] ");
    answer = input();
    # end while loop
 
#=============================================================================================================
# Output the results
print("=" * 85);
print("Thank you for the bug information");
print("=" * 85);
print(); # displays a blank line
print("Assignment #06 was created and submitted by Robert Zink");
print("=" * 85);
#=============================================================================================================
# END PROGRAM


#===============================================================================================================
# PROGRAMMER:
# PROGRAM NAME:  WHILE LOOP CHECK DATA VALUE - BUG COLLECTION
# DATE WRITTEN:  June 11, 2019
# PURPOSE:       USE WHILE LOOP TO CAPTURE DAILY BUG COLLECTION, CHECK FOR
#                             POSITIVE DATA AND ACCUMULATE THE TOTAL NUMBER OF BUGS COLLECTED.
#===============================================================================================================
# Declare / Define variables and data types
# answer is the lcv
# INITIALIZE VARIABLES
 
print("Do you wish to capture a daily bug collection count? <type  'Y' or 'y'>  [otherwise type 'no'] ");
#===============================================================================================================
# define the lcv answer
answer = input();
totalBugs = 0;
#===============================================================================================================
# While loop to do more than one bug collection
while answer == "y" or answer == "Y":
    # ==========================================================================================================
    # Declare / Define variables and data types
    # INPUT STATEMENTS
   
    print("How many days will bugs be collected? ");
    howMany = int(input())
    # ==========================================================================================================
    # Check to see if the target or ending value is a positive value
    while howMany <= 0:
        print("Wrong Data! [positive whole value only] Re-Enter: " + ("\n\nHow many days will you collect bugs?"));
        howMany = int(input());
       
    for days in range(1, howMany + 1, 1):
       
        # =======================================================================================================
        # Input number of bugs collected per day
        print("How many bugs did you collect on day #" + format(days, "2d"));
        bugs = int(input());
        while bugs <= 0:
            print("Wrong Data! [positive whole value only] Re-Enter: \n\nHow many bugs did you collect on day #" + format(days, "2d") + "");
            bugs = int(input());
       
        # =======================================================================================================
        # Accumulates or keeps a running sum of the number of bugs collected
        totalBugs = totalBugs + bugs;
        print(); # displays a blank line
        print("A total of " + format(totalBugs, "2d") + " bugs were collected in " + format(days, "2d") + " days.");
    print("=" * 85);
    print("Do you wish to capture a daily bug collection count? <type  'Y' or 'y'>  [otherwise type 'no'] ");
    answer = input();
#================================================================================================================
# Output the results
print("=" * 85);
print("Thank you for the bug information");
print("=" * 85);
 
#================================================================================================================
# END PROGRAM


# ===============================================================================================================
# PROGRAMMER:
# PROGRAM NAME:  WHILE LOOP FILES - BUG COLLECTION
# PURPOSE:       USE WHILE LOOP TO CAPTURE DAILY BUG COLLECTION, CHECK FOR POSITIVE DATA,
#                             ACCUMULATE THE TOTAL NUMBER OF BUGS COLLECTED, AND OUTPUT TO EXTERNAL FILE.
# ===============================================================================================================
# Declare / Define variables and data types
#================================================================================================================
# Create a file to write the result to
# open or create the external file
outFileName = input("Please type the name of the file where you wish to write the output "\
                          "\"end the file with .txt\" -->");
outFile = open(outFileName, "w");
print("=" * 105);
# ===============================================================================================================
# INITIALIZE VARIABLES
# define the lcv answer
print("Do you wish to capture a daily bug collection count? <type  'Y' or 'y'>  [otherwise type 'no'] ");
answer = input();
# ===============================================================================================================
# While loop to do more than one bug collection
while answer == "y" or answer == "Y":
   
    # Declare / Define variables and data types
    # INPUT STATEMENTS
    totalBugs = 0;
   
    print("How many days will bugs be collected? ");
    howMany = int(input());
    # ==========================================================================================================
    # Check to see if the target or ending value is a positive value
    while howMany <= 0:
        print("Wrong Data! [positive whole value only] Re-Enter: " + ("\nHow many days will you collect bugs?"));
        howMany = int(input());
 
    for days in range(1, howMany + 1, 1):
        # ==========================================================================================================
        # Input number of bugs collected per day
        print("How many bugs did you collect on day # " + format(days, "2d"));
        bugs = int(input());
        while bugs <= 0:
            print("Wrong Data! [positive whole value only] Re-Enter: \nHow many bugs did you collect on day #" + format(days, "2d") + "");
            bugs = int(input());
 
        #=============================================================================================================
        # Accumulates or keeps a running sum of the number of bugs collected
        totalBugs = totalBugs + bugs;
        print("A total of " + format(totalBugs, "2d") + " bugs were collected in " + format(days, "2d") + " days.");
        print("=" * 85);
    print("Do you wish to capture a daily bug collection count? <type  'Y' or 'y'>  [otherwise type 'no'] ");
    answer = input();
    # end while loop
 
# Output the results
# ===============================================================================================================
# write the results to an output file name designated by the user
outFile.write("\n"); # displays a blank line
outFile.write("=" * 85 + "\n");
outFile.write("A total of " + format(totalBugs, "2d") + " bugs were collected in " + format(days, "2d") + " days.\n");
outFile.write("=" * 85 + "\n");
outFile.write("\n"); # displays a blank line
outFile.write("Assignment #06 was created and submitted by Robert Zink::\n");
outFile.write("=" * 85 + "\n");
 
outFile.close(); # closes the newly created external output file
# ===============================================================================================================
# 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