This assignment is required.
The grading form shows point values for this assignment. Please review it now.
Show screen shots of the python code with comments and your input/output window.
You should use several well-planned sets of data to check out your program. Testing your programs with just the data that is asked for in the assignment does not necessarily mean that the programs will work for all cases.
Please include the following comments in each of your Python programs:
Your Name
Section
Date
Description
Assignment Number
A python template (python_template.py) has been provided for you to use.
Name this document XXX_Assignment 6 where XXX are your initials. Include a python file named P01.py, P02.py, etc. for each problem.
1. Write a program that asks the user for the name of a file. The program should display only the 3 characters of each word in the file. If the word contains less than 3 characters, it should display the entire word. Use the file: lorem_ipsum.txt to test your program.
Comment your source code and describe your code to someone who may be viewing it for the first time.
PLACE SCREEN SHOTS OF THE PYTHON CODE AND ALL I/O BELOW.
2. Write a program that opens the numbers.txt file in the assignment folder. The program should read all the numbers stored in a file, calculates the sum of all numbers stored, and outputs the average of all numbers.
Comment your source code and describe your code to someone who may be viewing it for the first time.
PLACE SCREEN SHOTS OF THE PYTHON CODE AND ALL I/O BELOW.
3. Write a program that opens the scrambler_sentence.txt. The program should unscramble the contents of the file. This should be done by decrementing each character back by one. For example, if the character is ‘b’ then it should be changed to ‘a’. You will have to take special care to make sure that you stay within the ASCII character limit of 97 and 122 or 65 and 90. If you find the character limit to be beyond these limits you will have to move to the beginning range. For example, if the character is ‘a’ it should be ‘z’.
(Hint: Use ord and chr functions to convert the number or letters accordingly. Comment your source code and describe your code to someone who may be viewing it for the first time.
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme