首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
Python编程设计代做、代写program程序
项目预算:
开发周期:
发布时间:
要求地区:
Diploma in Information Technology
Problem Solving
Instruction for CA3 Group Assignment
October 2023 Semester
Assessment
100 marks (This assignment constitutes 40% of the overall assessment)
Deliverables
There are Four (4) deliverables in this assignment, students must complete ALL components.
1.Written project report (6%)
2.Python codes (20%)
3.User guides with sample inputs/outputs (4%)
4.Oral Presentation (10%)
The Task
The objective of this project is to allow students to design and implement a mini program. You are to use flowchart to design your program, with clear steps and flows indicated. You need to use Python programming language to code all the programs, according to the project requirement.
In your report, write a short description, in 500 words, on your program design. You need to include the flowchart of your mini program in the report. You will also include screenshot samples on how the program should run in the report.
In your Python codes, include comments to explain the purpose of each section.
Assessment Marks Allocation
Component Assessed Marks Allocation
1 Part 1 – Report with flowchart 15
2 Part 2a – Main Programs (Python) 40
Part 2b – Additional Features 10
3 Part 3 – User guides with screenshots 10
4 Part 4 – Oral Presentation 25
Total 100
The Case
Ms Chong started flower arrangement as a hobby in 2016, and posting her arrangements and bouquets on Instagram. Little did she know what her pictures and arrangements would be so popular. Friends and even strangers started asking her to sell them flowers.
With a large social media following and growing side business, Ms Chong has decided to go all in and run her florist business full-time with the name “Beautiful Blooms”. She will require a system to manage the buying of flowers, viewing orders and changing the status of orders.
For a start, Beautiful Blooms has decided to offer a limited selection of flowers arranged under 5 categories as shown below:
Category Sample Picture
Romantic
Birthday
Grand Opening
Condolence
Anniversary
Details of all the products can be found in Appendix A.
Currently, all orders can taken manually. Every order must include the item code, item category, add-ons (if any), customer name, delivery address, recipient name, message for recipient, special instructions (if any) and lastly delivery date and time.
As an intern in IMDA (Infocomm Media Development Authority), your supervisor has assigned you to help Beautiful Blooms automate their sales process, inventory management and order management.
Project Requirement
After several rounds of discussion, Beautiful Blooms would like to have the following essential features to be included:
Inventory management that includes setting up products, adding and removing products and pricing updates.
Sales management that allows consistent order taking, taking delivery details, update of order status etc.
Further features to be integrated in the application are the ability to filter products by category and sorting by price.
Based on you understanding, the application should display the below main menu to allow Beautiful Blooms to repeatedly perform the 2 key features.
@@@@ Beautiful Blooms @@@@
1.Inventory management
2.Sales management
0.Exit
Enter option:
Before presenting the main menu, your application needs to load the existing from “Products.txt” (Appendix A) into a collection*.
* you can decide to implement using either Dictionary or List.
Details of the 2 key features are presented below:
1.Inventory management
This feature allows the user to perform the following: (through a sub-menu)
a.View /Update blooms
b.Add new blooms
c.View / Update add-ons
d.Add new add-on
e.Back to main menu
a.This feature will list product details, as shown in Appendix A. At the end of the list, the program will display a prompt:
To update an item, enter the item code. Or enter 0 to go back to previous menu.
If there is no item with item code, display appropriate error message and return to sub-menu.
Program will display the item name, price, and status, if the item code exists.
User can enter the new price and/or new status to proceed with the update.
Any updates should also be effected into “Products.txt”
b.To setup a new item, these data elements should be collected:
Name of item
Item code: this has to be unique. Can be manually entered or automatically generated
Price.
Category: There are 5 fixed categories – Romantic, Birthday, Grand Opening, Condolence, Anniversary
The new item is created, added into the collection, with status “Available”. The “Products.txt” file is also updated with this new item.
c.This feature will list all the available add-ons, as shown in Appendix B. At the end of the list, the program will display a prompt:
To update an item, enter the item code. Or enter 0 to go back to previous menu.
If there is no item with item code, display appropriate error message and return to sub-menu.
Program will display the item name, price, and status, if the item code exists.
User can enter the new price and/or new status to proceed with the update.
Any updates should also be effected into “Addons.txt”
d.To setup a new add-on, the following information must be added:
Name of the item
Item code. This must be unique. It can be manually entered or auto generated.
Price
The new addon is created,added to the collection, with the status ‘Available’. The ‘Addons.txt’ file is also updated with this new item.
2.Sales management
This feature allows to take orders, view orders and update orders according to their process. These options should be presented in the sub-menu)
a.Create order
b.View order
c.Back to main menu
a.When creating an order, the list of products is first displayed. At the end of the list, 3 options are displayed:
1) Filter products by category
2) Sort products by price
3) Order item
If “1” is entered, then these options will be displayed:
1) Romantic
2) Birthday
3) Grand Opening
4) Condolence
5) Anniversary
0) Go back
Select filter category
User can select the category by entering the appropriate number. For example, if the user enters “2”, then only products in the “Birthday” category will be displayed. At the end of the list, these options will be displayed:
1) Order item
2) Back to filter category
3) Back to main menu
If user enters “1”, the user will proceed to the Order item section (see below)
If “2) Sort products by price” option is chosen”, then the products will be listed in ascending order of price. At the end of the list, these options will be displayed:
1) Order item
2) Back to main menu
Order item section
When user chooses “Order item”, a prompt will be shown:
Please enter item code:
System should validate item code and only allow available items to be selected.
Next, the system will display the list of add-ons, e.g:
Available add-ons:
A001 Chocolates $8
A002 Customized Handwritten card $12
A003 Soft Toy $16
Enter item code for addon, or 0 to skip.
Next, the system will prompt the user to enter:
- customer name
- recipient’s name
- message for recipient (limited to 300 characters)
- Store pickup or Delivery? ($35 for delivery)
(if delivery is selected, the below information will be required)
- delivery address
- delivery date
- same day delivery? (Additional charge of $35 applies).
The system will be display a summary as shown below:
---------- Order Summary ---------
Item: Angel Eyes R001 $85
Addon: Chocolates ADD001 $8
Delivery date: 28 Aug 2023
Same day delivery: No $0
Delivery charges: $35
Total $128
Customer’s name: Tony Lin
Recipient’s name: Linda Foo
Message for recipient:
I love you XOXO
Delivery address: 123 ABC St, Singapore 12345
-------------------------------------------------
Enter 1 to confirm, 2 to edit info, 0 to cancel :
If “1” is entered, an Order ID is generated. Order ID will follow this format: BBO-23-XXXX, where XXXX is a running number starting from 0001. The order is saved with the status “Open”. If “2” is entered, the user will be prompted to enter all information starting from customer name, then shown the summary again. If 3 is entered, nothing is saved.
b.When view order option is selected, the list of orders will be displayed.
- Only orders with “Open” is shown by default.
- At the end of the list, the following options are shown:
1) Edit/Cancel order
2) Filter order by status
3) Back to main menu
If “1” is selected, the user will be prompted to enter the order number. If order number exists, options will appear depending on its current status:
Current status Options
Open - Cancel order
- Change to Preparing
Cancelled - Set back to Open
Preparing - Change to Ready
Ready - Change to Preparing
- Change to Closed
Closed No option to change
If “2” is selected, the user can choose the option to filter (see the different status above), and only Orders with that status will be shown.
Below are suggestions for BONUS features for consideration. You do not have to incorporate all of them and you may include your own additional features.
a. Using Python Date library
- Set delivery fee to increase by $10 if delivery falls on Sat or Sun.
- Change order status to “Deliver today” if order delivery is currently today and not Ready yet.
b. Use OOP
- Use Objects to manage Products and Orders
c. Product popularity rating
- Add option to add a rating for products e.g 4.5/5 by 8 users
- Option to sort items by rating
Instructions for CA3 Report, Python Codes and User Guides
Cover Page
The cover page should include the institution name (and institution logo) the programme and the module name, the semester and year and date of submission. All these must be centralised in the page.
Write FULL Name and Student number as in the register on the cover. Students should a keep a copy of assignment submitted.
Python Codes
Suggested IDE and version: Wing Personal 7, Python 3.8.2 and above
Please zip all your Python codes into single file and upload it together with the report. If you used any additional Python library apart from the standard package, you need to include them in the submission.
Referencing
No referencing is needed for program designs and codes.
Font and Spacing
Font: Times New Roman
Font size: 12 and 1.5 for line spacing.
Penalty Marks for Late Submission of Assignment
By one day: 20% to be deducted from total marks.
More than one day: submission will NOT be graded.
Plagiarism and Collusion
Students are not allowed to reuse old assignments or submit projects from previous semesters or copy largely from sources, particularly from the Internet web.
The submitted report must show evidence that this is students’ own work. No marks will be awarded if there are no workings or reasonable explanations. Please be reminded that plagiarism and collusion is a serious offence, and all cases will be referred to the administration. Grades will be withheld if the submission is suspected of plagiarism or collusion till investigations are completed.
Important Dates of CA3 Report
CA3 Individual Assignment Deadline: 13 Nov 2023 11.59 a.m.
Submit your project via Canvas, submission must be completed in order for reports to be graded.
Lecturer Contact
You should contact your lecturer via your SIM email whenever you have any issue about your project.
Appendix A
Current list of items offered by Beautiful Blooms.
Item Code Item Name Category Price Status
R001 Angel Eyes Romantic $128 Available
R002 Hearts on Fire Romantic $158 Available
R003 Purple Rush Romantic $288 Available
B001 Sweet Nothings Birthday $98 Available
B002 Summer Surprise Birthday $158 Available
GO001 Savannah Grand Opening $158 Available
GO002 The Tropics Grand Opening $168 Available
C001 Tranquillity Condolence $151 Available
C002 Memories Condolence $151 Available
A001 Garden of Hearts Anniversary $128 Available
A002 Treasured Blooms Anniversary $188 Available
A003 Ray of Light Anniversary $288 Available
File: Products.txt
R001,Angel Eyes,Romantic,128,Available
R002,Hearts on Fire,Romantic,158,Available
R003,Purple Rush,Romantic,288,Available
B001,Sweet Nothings,Birthday,98,Available
B002,Summer Surprise, Birthday,158,Available
GO001,Savannah,Grand Opening,158,Available
GO002,The Tropics,Grand Opening,168,Available
C001,Tranquility,Condolence,151,Available
C002,Memories,Condolence,151,Available
A001,Garden of Hearts,Anniversary,128,Available
A002,Treasured Blooms,Anniversary,188,Available
A003,Ray of Light,Anniversary,288,Available
Appendix B
List of add-ons available.
Item Code Name Price Status
ADD001 Chocolates 8 Available
ADD002 Customized Handwritten card 12 Available
ADD003 Soft Toy 16 Available
File: Addons.txt
ADD001,Chocolates,8,Available
ADD002,Customized Handwritten card,12,Available
ADD003,Soft Toy,16,Available
Marking Rubric
Criteria Excellent Very Good Good Acceptable Weak
Project Report (6%)
Description of the Program Student has provided detailed and step-by-step description of the program Student has provided step-by-step description of the program Student has provided sufficient description of the program Student has provided limited description of the program Student has provided short description of the program
Appropriate Flowchart Student has used multiple appropriate flowcharts to describe the program completely Student has used multiple appropriate flowcharts to describe the program Student has used some flowcharts to describe the program Student has attempted to use flowcharts to describe the program Student has attempted to use flowchart to describe the program but were not sufficient
Clarity of Presentation Student has provided clear, detailed and concise presentation Student has provided clear and concise presentation Student has provided clear presentation Student has provided clear presentation to some extent Student has attempted to provide a clear presentation
Creativity of Presentation Student has used a variety of creative software and tools to present the assignment Student has used many creative software and tools to present the assignment Student has used some amount of creative software and tools to present the assignment Student has used a couple of creative software and tools to present the assignment Student has used at least one creative software or tools to present the assignment
Python Codes (20%)
Understanding of the Project Student has demonstrated high level of understanding of the project requirements that are both stated in the task and those not mentioned Student has demonstrated some understanding of the project requirements that are both stated in the task and those not mentioned Student has demonstrated high level of understanding of the project requirements that are stated in the task Student has demonstrated basic understanding of the project requirements that are stated in the task Student has demonstrated sufficient understanding of the project requirements that are stated in the task
Application of programming modules Student is able to apply majority of the topics learnt in this project Student is able to apply many topics learnt in this project Student is able to apply some topics learnt in this project Student is able to apply at least two topics learnt in this project Student is able to apply at least one topic learnt in this project
Intellectual Features Student has demonstrated efficient use of intelligent algorithm in majority of the codes Student has demonstrated the use of intelligent algorithm in most of the codes Student has demonstrated some use of intelligent algorithm in the codes Student has demonstrated basic use of intelligent algorithm in the codes Student has demonstrated sufficient use of intelligent algorithm in the codes
Additional Features Student has added substantial number of additional features to the program Student has added a good number of additional features to the program Student has added some number of additional features to the program Student has added a couple of additional features to the program Student has added at least one additional feature to the program
User Interface Student has created excellent user interface for the program Student has created good user interface for the program Student has created sufficient and simple user interface for the program Student has created basic user interface for the program Student has created poor user interface for the program
User Guides (4%)
Screenshot Samples Student has provided clear, detailed, and step-by-step screenshots guide on the program Student has provided step-by-step screenshots guide on the program Student has provided sufficient screenshots guide on the program Student has provided limited screenshots guide on the program Student has provided very little screenshots guide on the program
Data Student has used appropriate and detailed test data on the program to illustrate the input and output Student has used appropriate test data on the program to illustrate the input and output Student has used sufficient test data on the program to illustrate the input and output Student has used some test data on the program to illustrate the input and output Student has used very limited test data on the program to illustrate the input and output
Oral Presentation (10%)
Clarity of Presentation Student has provided clear, detailed, and concise presentation Student has provided clear and concise presentation Student has provided clear presentation Student has provided clear presentation to some extent Student has attempted to provide a clear presentation
Delivery Style Excellent control of volume, pace
and diction; no distracting
gestures; visual aids used effectively Good volume and energy;
good pace and diction; few or no distracting
gestures; visual
aids used adequately Average volume and energy; generally
good pace and diction; some distracting
gestures or posture; visual aids could be
improved More volume/energy needed at times;
pace too slow or fast; some distracting
gestures or posture; visual aids could be
improved Low volume or energy; pace too slow
or fast; poor diction; distracting
gestures or posture; visual aids poorly used
Content All information was relevant and appropriate to requirements of the assignment Most information was relevant and appropriate to requirements of the assignment Most information relevant; some topics needed expansion or shortened Information was valid but not explicitly related to the assignment Information was not relevant or directly related to the assignment
Q & A Session Answers
questions with authority and
accuracy Provides good, clear answers to questions Provides adequate
answers to questions Some
difficulty answering questions Uneasiness or inability to answer
questions
Overall Impression Grade Student was very well prepared for the entire presentation Student was well prepared for the most parts of the presentation Student was prepared for most parts of the presentation Student appeared prepared for some parts of the presentation Student was clearly unprepared for the presentation
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!