国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫CSE 231、代做Python設(shè)計程序

時間:2024-03-03  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



CSE 231 Spring 2024
Computer Project 05
1. Assignment Overview (learning objectives)
In this assignment, you will practice with files, lists and error-handling using exceptions. You are only allowed
to use Lists and tuples. Any use of other advanced data structures (e.g., Dictionaries, Classes, etc.) will result in
a zero on the project.
2. Important Note about submission
3. Assignment Deliverable
The deliverable for this assignment is the following file:
proj05.py – the source code for your Python program
Be sure to use the specified file name and to submit it for grading via Codio before the project deadline.
4. Assignment Background
Yu-Gi-Oh! Trading Card Game which is based on the manga series of the
same name and anime spin-off series Yu-Gi-Oh! Duel Monsters both
created by Kazuki Takahashi and were released in 1996 and 2000. As the
moment of writing this project, this franchise is currently celebrating its 25th
anniversary. This franchise has developed thousands of iconic cards like:
Dark Magician, Blue-Eyes White Dragon, Elemental Hero Neos, Stardust
Dragon, and much more.
As beloved as this series is with its strategic focus on monster cards, spell,
and trap cards, it is not a hobby for everybody. Collecting some of these
cards can be expensive, especially when they are popular in the competitive
circuit. This project will read a dataset of these cards and show their prices
on the market and how much does it cost to build a deck of these cards when
bought in said market. The files used in this project were adapted from the
following sources:
1) Card data: https://www.kaggle.com/datasets/ioexception/yugioh-cards/code
2) Decklists: https://ygoprodeck.com/
This assignment is worth 50 points (5.0% of course grade), and must be completed before 11:59 PM
EST on Tuesday, March 5th.
After the due date, your score will be deducted by 10% for every 5 hours late or a fraction of it. No
submissions will be accepted after 24 hours from the due date. The penalty will be applied on the
full project score.
The project will be automatically submitted by the due date (03/05). If you want to keep working on it
after the deadline with penalty, you must manually click on “Mark as uncompleted”, acknowledge the
penalty message and manually click on “Mark as completed” when done.
CSE 231 Spring 2024
These files contain the following information of each card:
a) card_id (str): Unique card identifier
b) card_name (str): Card name
c) card_type (str): “Spell”, “Trap”, and various type of “Monster” cards
d) card_description (str): Card summoning requirements and or card effects
e) card_race (str): Card species. For example: “Spellcaster”, “Dragon”, or “Counter Trap”
f) card_archetype (str): Name of group of cards that support specific characters: “Dark
Magician”
g) card_price (float): TCG player price for the card in the second market.
5. Assignment Specifications
1. You must implement the following functions:
a) open_file (prompt_str) ---- file pointer
This function repeatedly prompts the user for a filename (using the prompt string: prompt_str) until
the file is opened successfully. An error message should be shown if the file cannot be opened (check
the starter code or the strings.txt file for the appropriate strings). It returns a file pointer.
Use try-except to determine if the file can be opened. When opening the file, you need to use
encoding=" utf-8".
fp = open(filename, "r", encoding = " utf-8")
b) read_card_data(fp) ---- List of tuples
This function is designed to parse a file containing the dataset of Yu-Gi-Oh trading cards. It takes a file
pointer object (fp) as its parameter, which is returned by the open_file function. The function
returns a list of tuples, where each tuple represents a card in the dataset.
Each tuple consists of the following columns: id, name (limited to the first 45 characters), type,
description, race, archetype, and the card's TCGPlayer price. To understand the dataset's format and
identify the column indices we are interested in, it is recommended to open the CSV files in Excel or
any text editor.
The price is converted to a float within the tuple. After assembling the list of tuples, it is sorted in
ascending order based on price first and then by name.
c) search_cards(card_data, query, category_index) ---- List of tuples
This function returns a list of cards that contain the provided query string in the given category index. It
takes as its parameters: card_data (a list of cards like the list returned by read_card_data
function), query (a string to search in a selected category), and category_index (the index of the
category to search in the CATEGORIES list provided in the starter code). The returned list should be
sorted in ascending order by price first and then by name.
For example:
query = "Dark Magician"
category_index = 1 # Name
result = [(xxxxx, "Dark Magician", ...), (xxxxx, "Dark Magician Girl", ...), ...]
CSE 231 Spring 2024
d) read_decklist(fp, card_data) ---- List of tuples
This function creates a list of cards present in the current deck list (a YDK file). It takes as its
parameters: a file pointer object (fp) to a YDK file and a card_data (a list of cards like the list
returned by read_card_data function). The YDK file contains the ID of cards in a deck where
each line in the file is a card ID. The function reads the IDs from the file and searches for all the cards
by their “id” column.
The returned list should be sorted in ascending order by price first and then by name.
e) compute_stats(card_data) List_tuples,float,List_tuples,float,List_tuples,
float
This function takes as its parameter a card_data (a list of cards like the list returned by
read_card_data function). It finds the minimum price, maximum price, and median price for all
the cards in card_data. It also finds the list of cards that have the same value as the min, max, and
median. Then, it returns the list of cards with the min price, the minimum price, the list of cards with the
max price, the maximum price, the list of cards with the median price, and the median price.
All lists should be sorted by name.
f) display_data(card_data)
This function takes as its parameter a card_data (a list of cards like the list returned by
read_card_data function). It prints the contents of each card tuple in the card_data list. Then,
it prints the total price. The table should be formatted properly. There are 5 columns in the table. First, a
header line should be displayed:
i. the string 'Name': in a field width of 50
ii. the string 'Type': in a field width of 30
iii. the string 'Race': in a field width of 20
iv. the string 'Archetype': in a field width of 40
v. the string 'TCGPlayer': in a field width of 12
Then, the cards are displayed using the following formatting:
i. Name: in a field width of 50
ii. Type: in a field width of 30
iii. Race: in a field width of 20
iv. Archetype: in a field width of 40
v. Price: in a field width of 12 with precision 2 and the comma for the thousand
Finally, a line that shows the total price which is the sum of all the card prices should be displayed using
the following formatting:
i. the string 'Total': in a field width of 50
ii. an empty string '': in a field width of 30
iii. an empty string '': in a field width of 20
iv. an empty string '': in a field width of 40
v. Total: in a field width of 12 with precision 2 and the comma for the thousand
g) display_stats(min_cards, min_price, max_cards, max_price,
median_cards, median_price)
This function prints the output from compute_stats() function. First, the minimum price is
displayed with precision 2 and comma for the thousand. It is followed by all the card names that have a
price the same as the minimum price. The function will do the same for the maximum and median price
and data.
CSE 231 Spring 2024
h) main(): This function is the starting point of the program. The program prompts the user for an option
until the user decides to stop the program:
i. Prompt the card data filename (use the correct prompt from the starter code).
ii. Read the card data file and get the list of categories and the list of card tuples.
iii. Close the file.
iv. Prompt an option
v. Option 1 (Show all cards): This option shows details about each card in the dataset. It
will find and display the number of cards in the data set. Then, use
display_data()to show information of only the cheapest 50 cards in the dataset.
Then, find and print all the cards that have the maximum price, minimum price, and the
median price using the display_stats() function.
vi. Option 2 (Search for cards): Prompt for a query string pertaining to a specific column
in the card dataset. Re-prompt for category until the user enters a valid category (a
category that is in the CATEGORY list). You should convert the input category to
lowercase since the CATEGORY list items are all lowercase strings.
Get all cards that satisfy the provided query. Find the maximum, minimum, and median
values for all resulting cards in the search. If there are any cards that satisfies the query,
display the number of cards in the results, then output the card information and the results
like option 1. Otherwise, print that there are no cards in the category.
vii. Option 3 (Search decklist): Prompt for a decklist filename and build a list of cards that
have the same “card id” in the file. Show the card information; find the maximum,
minimum, and median prices and display them.
viii. Option 4: Stop the program.
ix. If the user does not enter any of these options, the program needs to display an error
message and prompt again until a valid option is selected.
6. Assignment Notes and Hints
1. The coding standard for CSE 231 is posted on the course website:
http://www.cse.msu.edu/~cse231/General/coding.standard.html
Items **9 of the Coding Standard will be enforced for this project.
2. The program will produce reasonable and readable output, with appropriate labels for all values
displayed.
3. Be sure to prompt the user for the inputs in the correct order. And, your program cannot prompt the user
for any supplementary inputs.
4. We provide a proj05.py program for you to start with.
5. You are not allowed to use advanced data structures such as dictionaries, classes, etc.
6. If you “hard code” answers, you will receive a grade of zero for the whole project. An example of hard
coding is to simply print the correct highest scores of a file rather than having the program find it in the
file and then print it.
7. Suggested Procedures
• Solve the problem using pencil and paper first. You cannot write a program until you have figured out
how to solve the problem. This first step can be done collaboratively with another student. However,
once the discussion turns to Python specifics and the subsequent writing of Python statements, you must
work on your own.
CSE 231 Spring 2024
• Cycle through the following steps to incrementally develop your program:
o Edit your program to add new capabilities.
o Run the program on Spyder and fix any errors.
o Use the Codio system to submit the current version of your program.
• Be sure to use the Codio system to submit the final version of your program.
• Be sure to log out when you leave the room, if you’re working in a public lab.
The last version of your solution is the program which will be graded by your TA. You should use the Codio
system to back up your partial solutions, especially if you are working close to the project deadline. That is the
easiest way to ensure that you won’t lose significant portions of your work if your machine fails or there are
other last-minute problems.
8. Grading Rubric
Computer Project #05 Scoring Summary
General Requirements
______ (4 pts) Coding Standard **8
 (descriptive comments, function header, etc...)
Implementation:
____ (2 pts) Pass test1
____ (2 pts) Pass test2
____ (2 pts) Pass test3
____ (2 pts) Pass test4
____ (2 pts) Pass test5
____ (2 pts) Pass test6
____ (12 pts) Pass hidden tests (4 pts each)
____ (14 pts) All functions work as specified.
(2 pt) open_file (Manual Grading)
-1 point if No try/except
-1 point if No while loop
 (2 pt) read_card_data
(2 pt) read_decklist
(2 pt) search_cards
(2 pt) compute_stats
(2 pt) display_data (Manual Grading)
(2 pt) display_stats (Manual Grading)
____ (8 pts) Pass All hidden functions tests.
 (2 pt) read_card_data
(2 pt) read_decklist
(2 pt) search_cards
(2 pt) compute_stats
Note:
• hard coding an answer earns zero points for the whole project.
• -10 points for not putting all your user interaction in your main().
• Use of any advanced data structures (such as lists, sets, dictionaries, classes,
etc.) earns zero points for the whole project.
CSE 231 Spring 2024
9. Test Cases
9.1 Function Unit Tests
Check the test files in the Project05 starter package. When you run one test file as you normally run a python
file in PyCharm. if an assertion error is generated, it means you failed the test. You can look at the test case .py
files to see the details for the tests.
9.2 Input/Output Tests
We provide the .txt files with all the test files (inputX.txt and output.txt where X is the test number).
If you fail a test, use diffchecker.com to check the difference between your output and the instructor output.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 









 

掃一掃在手機打開當(dāng)前頁
  • 上一篇:CS 2410代做、代寫C/C++語言程序
  • 下一篇:代寫DTS203TC、C++,Java程序語言代做
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    久久久久天天天天| 精品国产一区二区三区久久| 久久久久久久久久久久久久久久av| 中文字幕色呦呦| 精品无人区一区二区三区| 日韩在线精品一区| 日日摸日日碰夜夜爽无码| 国产视频一区二区不卡| 国产精品手机视频| 欧美性视频在线| 精品国偷自产在线视频99| 日本婷婷久久久久久久久一区二区| 91精品国产色综合久久不卡98| 一本大道熟女人妻中文字幕在线| 国产日韩亚洲精品| 久久夜色精品亚洲噜噜国产mv| 极品美女扒开粉嫩小泬| 久久激情视频久久| 欧美亚洲国产另类| 国产精品免费在线播放| 免费毛片网站在线观看| 国产精品久久久久77777| 欧美精品久久久久久久免费| 久久精品人人做人人爽| 欧美日韩免费精品| 国产精品女人网站| 国产有码在线一区二区视频| 精品免费国产| 国产伦精品一区二区三区视频黑人 | 亚洲欧美日产图| 91九色综合久久| 亚洲免费不卡| 久久理论片午夜琪琪电影网| 日韩精品xxxx| 国产精品久久久久久久久借妻| 蜜桃视频成人| 欧美日本高清一区| 91精品综合久久久久久五月天| 午夜精品久久久久久久久久久久久| 91精品国产综合久久香蕉| 久久久久久18| 97人人模人人爽视频一区二区| 亚洲视频电影| 国产成人一区三区| 精品欧美国产| 中文字幕av日韩精品| 国产精品18久久久久久首页狼| 日韩理论片在线观看| 国产精品三级在线| 国产精品综合网站| 日本一本a高清免费不卡| 国产精品污www一区二区三区| 国产日韩三区| 性亚洲最疯狂xxxx高清| 国产精品欧美激情| 91免费看片网站| 欧美精品尤物在线| 亚洲综合五月天| 国产www精品| 精品一区二区不卡| 亚洲免费久久| 国产精品少妇在线视频| av在线播放亚洲| 日韩久久精品一区二区三区| 欧美成人精品影院| 国产h视频在线播放| 国产综合在线观看视频| 亚洲AV无码成人精品一区| 国产精品美女视频网站| 91福利视频在线观看| 黄色www网站| 色欲av无码一区二区人妻| 国产精品视频成人| 99中文字幕| 韩国福利视频一区| 天天爽天天狠久久久| 国产精品久久久久av| 国产成人av在线播放| 国产乱淫av片杨贵妃| 欧美一级大片视频| 亚洲国产欧美不卡在线观看| 久久亚洲成人精品| 日韩在线视频国产| 91精品视频免费观看| 国产一区二区三区免费不卡| 日韩亚洲欧美精品| 一级黄色免费在线观看| 国产精品久久久久久av下载红粉 | 99re在线视频上| 国产一区二区视频在线免费观看| 日韩美女在线观看一区| 亚洲第一页在线视频| 欧美日本在线视频中文字字幕| 久久久久久久999精品视频| 97国产精品久久| 国产在线一区二| 欧美资源一区| 日韩av123| 亚洲激情电影在线| 在线精品亚洲一区二区| 国产成人精品一区二区在线| 69精品丰满人妻无码视频a片| 国产视频精品网| 免费看a级黄色片| 青青成人在线| 日本黄网免费一区二区精品| 亚洲一区二区三区欧美| 精品国产乱码久久久久久88av| 久热国产精品视频| 色偷偷噜噜噜亚洲男人| 久久av秘一区二区三区| 久久免费精品视频| 久久久免费精品视频| 91国产视频在线播放| 91免费国产精品| 风间由美一区二区三区| 国产日韩精品视频| 国产日韩一区二区在线| 精品午夜一区二区| 国产一区二区三区播放| 国语自产精品视频在线看| 激情婷婷综合网| 国模一区二区三区私拍视频| 欧美xxxx黑人又粗又长密月 | 这里只有精品66| 中文网丁香综合网| 中文字幕在线亚洲精品| 最新av网址在线观看| 一区二区三区久久网 | 韩日精品中文字幕| 精品少妇一区二区三区在线| 国产主播精品在线| 国产美女视频免费| 成人国产精品日本在线| 97久久伊人激情网| 久久露脸国产精品| 久久久久久九九九| 久久久精品在线观看| 国产精品麻豆免费版 | 在线观看欧美一区| 中文字幕日韩精品久久| 亚洲一区二区三区色| 日本在线播放不卡| 欧美在线视频网站| 国模视频一区二区| 国产精选一区二区| 久久久久久高清| 色偷偷91综合久久噜噜| 国产精品久久九九| 亚洲欧美影院| 日韩精品国内| 国产主播精品在线| 99热成人精品热久久66| 国产高清av在线播放| 久久精品视频免费播放| 久久亚洲影音av资源网| 亚洲一区二三| 奇米四色中文综合久久| 麻豆成人在线播放| 99久热在线精品视频| 久久av二区| 成人444kkkk在线观看| 亚洲国产一区二区三区在线| 欧美亚洲国产精品| 成人av电影免费| 国产成人黄色av| 国产精品极品美女粉嫩高清在线| 亚洲国产精品久久久久婷蜜芽| 日韩免费中文专区| 免费国产a级片| 成人精品久久一区二区三区 | 99视频精品全部免费看| 精品国产依人香蕉在线精品| 中文字幕一区二区三区最新| 日韩久久在线| 国产精品亚洲视频在线观看| 久久久久久久色| 中文字幕精品一区日韩| 热re99久久精品国99热蜜月| 国内少妇毛片视频| 91久久久久久| 久久精品久久久久久| 亚洲中文字幕无码不卡电影| 日本成人在线不卡| 高清欧美精品xxxxx| 国产成人精品在线| 亚洲巨乳在线观看| 精品一区二区久久久久久久网站| 国产精品.com| 久久艹在线视频| 日韩欧美不卡在线| 99久久精品久久久久久ai换脸 | 超碰97在线播放| 国产精品久久77777| 欧美一区二区三区……| 国产日韩精品综合网站| 久久精品国产69国产精品亚洲| 亚洲高清乱码| 国产欧美日本在线| 国产精品视频一区二区高潮|