99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

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

PROG2007代做、Java,Python程序設(shè)計(jì)代寫(xiě)

時(shí)間:2024-03-29  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)


Assessment Brief
PROG2007 PROGRAMMING II
Summary
Title Assessment 2
Type Portfolio
Due Date Monday 8th April 11:59 pm AEST/AEDT (start of Week 6)
Length NA
Weighting 60%
Academic Integrity
(See below for limits
of use where GenAI
is permitted)
GenAI May be used for this assessment.
Please see the Academic Integrity section below for acceptable use of
GenAI in this assessment.
Submission Please see the Submission section below on how to submit your
assessment.
Unit Learning
Outcomes
This assessment task maps to the following ULOs:
ULO2: design, implement, test, and debug simple programs in an objectoriented programming language.
ULO3: demonstrate how to use class mechanisms to support
encapsulation and efficient code.
ULO4: analyse and determine appropriate data structures and iteration
methods to support a solution.
Rationale
This assessment, focused on creating a Python-based weather data extraction bot, aligns with current educational
objectives by emphasizing real-world applicability and comprehensive problem-solving skills. It integrates core
programming elements—object-oriented design, data handling, error management, and collections usage—
preparing students for professional challenges in fields reliant on accurate data, such as environmental science
and urban planning. Moreover, the task encourages students to develop robust, maintainable software, mirroring
industry demands where software reliability is crucial. The added requirement of a video presentation hones their
ability to communicate complex technical concepts, enhancing their employability by equipping them with a skill
set that is highly valued across various industries, thereby making this assessment a holistic tool for learning and
real-world application.
Task Description
In this assignment, you will write a bot in Python that extracts and processes data from a website
which contains weather information, much like the BOM site. The site has been created for this unit,
given that we don’t have permission or want to overrun the BOM site.
The assignment contains two programming parts as follows:
• In Part 1, you will design and implement an object-oriented program that reads weather
data from a csv file, stores it in an appropriate collection, and performs some simple data
analysis.
• In Part 2, you will modify your program from part one and add the ability to handle dates
and times, log messages to a log file, and implement web scraping and data analysis
capabilities using third party libraries.
This assignment also requires you to create a video explaining why you completed the assignment
the way you did.
2
Assessment Brief
Task Instructions
Part 1
Visit the website at https://prog2007.it.scu.edu.au/weather and view the following pages:
• https://prog2007.it.scu.edu.au/weather/sydney.html
• https://prog2007.it.scu.edu.au/weather/melbourne.html
• https://prog2007.it.scu.edu.au/weather/brisbane.html
You will notice that all three pages have an identical format as follows:
• A location for the forecast.
• The date and time the forecast was last updated.
• A daily forecast covering 7 days from Friday the 8th of March until Thursday the 14th of
March.
Create a csv file based on the three pages (Sydney, Melbourne, and Brisbane) that contains all of the
data from the pages. You can use the following example as a template if needed or you can create
your own template. This example contains a headings row along with the data for the first record on
the Sydney forecast page:
Location,Updated Date,Forecast Date,Min Temp,Max Temp,Condition,Possible
Rainfall,Chance of any Rain,Forecast,Warning
Sydney,Forecast updated at 9:39 am EDT on Thursday 7 March 2024,Friday 8
March,Min: 21,Max: 28,Morning shower or two.,Possible rainfall: 0 to 1 mm,Chance
of any rain: 50%,Partly cloudy. Medium chance of showers in the morning and early
afternoon. Light winds becoming east to northeasterly 15 to 20 km/h in the late
afternoon then becoming light in the evening.,Sun protection recommended from 9:30
am to 4:30 pm. UV Index predicted to reach 9 [Very High]
Once you have created the csv file with all of the data from the Sydney, Melbourne, and Brisbane
pages, your job is to write an object-oriented program in Python with a minimum of five classes that:
• Reads the data in the csv file and uses the data to create appropriate objects.
• Stores all of the objects in appropriate collection(s).
• Uses a Set to perform some basic data analysis.
Things to think about:
• How will you handle and manipulate the strings in the csv file?
• How will you structure your classes and what relationships will the classes contain?
• What attributes should each class have and what data type should they be?
• How will you secure and validate the data in each class?
• How will you handle any potential errors in your program?
Two possible ways to approach the problem may be to:
• Have a forecast class with attributes for individual items in each forecast.
• Have an observation class and view the individual items in each forecast as an observation
(similar to the sample project used in the Live Coding sessions).
3
Assessment Brief
Your mark will be determined based on:
• Your proficiency in handling and manipulating the strings in the CSV file into suitable data
types e.g. ints or doubles for values, units of measurements, start time and end time that
sun protection should be worn etc.
• How well you demonstrate ALL the class design concepts you have learned in Modules 1 and
2.
• How well you demonstrate the error handling concepts you have learned in Module 3.
• How well you demonstrate your ability to choose and implement appropriate collections
based on the concepts you have learned in Modules 3 and 4.
Part 2
Make a copy of your program from Part 1. Update your program so that it:
• Scrapes the data from the Sydney, Melbourne, and Brisbane pages using the request library
and Beautiful Soup instead of reading it from a csv file.
• Uses the datetime module for any date or time related data.
• Uses the logging module to output appropriate messages where applicable e.g. info,
warning, error messages.
• Performs some basic data analysis using pandas instead of a set.
You mark will be determined based on:
• The criteria listed in the previous section.
• How well you demonstrate the concepts you have learned in Module 5.
Video
You are required to create a video explaining why you completed the assignment the way that you
did. Your video should address each part of the assignment separately i.e. cover part one first, then
part two.
You are not required to explain your code line by line. Rather for each part of the assessment your
video should focus on the following:
• Your class design.
• Any techniques you've employed to secure and validate your data.
• Your error handling.
• Your use of collections.
• The data analysis you chose to do.
Resources
Everything that you need to know to complete this assessment was covered in:
• Programming 1
• Modules 1 through 5 in this unit.
Task Submission
You can use PyCharm or VSCode to complete the assignment and your assignment must run using
Python 3. This is covered in the Getting Started section of MySCU.
4
Assessment Brief
The submission requirements are identical to assessment one as follows:
• Your submission must be named FirstName_LastName_A2. For example, Alex_Hendry_A2
• You are only required to submit your Python files and not your project files.
• You are required to use the WakaTime plugin and submit a screenshot of your WakaTime
dashboard when submitting your assignment clearly identifying how much time you spent
on each part of the assessment.
• Your video must be uploaded to your student OneDrive account and shared using a link.
All of the above points are covered in the submission instruction video for assessment one. The
video covers how to submit your Python files, your screenshot of the WakaTIme dashboard, and
your video. The only difference is the A2 in the submission name.
Please DO NOT start this assessment without watching the video.
Please note that all submission instructions in this assignment and the submission video must be
followed EXACTLY, including the folder names you are instructed to use. Failure to do so may result a
requirement to resubmit. The reason for this is as a programmer, you will often work as part of a
team and will be required to follow design documentation. If the design parameters are not followed
precisely, bugs will be introduced into the software when all of the individual components of the
program are assembled.
Academic Integrity
At Southern Cross University, academic integrity means behaving with the values of honesty,
fairness, trustworthiness, courage, responsibility and respect in relation to academic work.
The Southern Cross University Academic Integrity Framework aims to develop a holistic, systematic
and consistent approach to addressing academic integrity across the entire University. For more
information, see: SCU Academic Integrity Framework
NOTE: Academic Integrity breaches include unacceptable use of generative artificial intelligence
(GenAI) tools, the use of GenAI has not been appropriately acknowledged or is beyond the
acceptable limit as defined in the Assessment, poor referencing, not identifying direct quotations
correctly, close paraphrasing, plagiarism, recycling, misrepresentation, collusion, cheating, contract
cheating, fabricating information.
Use of GenAI
There are no limitations on using GenAI in this assignment providing you follow the following
guidelines:
• You understand the code you are submitting and can explain it.
• You are not using any concepts that are not taught in the unit.
• All code that was created using GenAI must be clearly identified using a comment. The
following are possible examples of comments you may use:
o This method was created using GenAI.
o This block of code was partly created using GenAI.
o This constructor was generated using ChatGPT.
• Your code runs without errors.
5
Assessment Brief
If your submission is deemed to be suspicious by your marker you may be asked to attend an
interview in your tutorial class to explain your code. If you cannot explain your code, you may be
submitted for academic integrity. Possible reasons your submission may be deemed suspicious could
include:
• Using programming concepts not taught in the unit.
• Using programming concepts considered by your marker to be beyond your programming
abilities as demonstrated in the class.
• Submitting code suspected of being generated using GenAI software but is not clearly
identified.
To summarise:
• You can use GenAI as much as you like as long as you clearly identify the code you submit and
understand what it does.
• DO NOT SUBMIT ANY CODE THAT YOU DO NOT UNDERSTAND AND CANNOT EXPLAIN.
Collusion
Please note that your source code for this assignment will be run through a plagiarism detection
system designed for code that compares all assignments and highlights identical or very similar
submissions. If you are found to have colluded with other students, you will be submitted for
academic integrity.
Special Consideration
Please refer to the Special Consideration section of Policy.
https://policies.scu.edu.au/document/view-current.php?id=140
Late Submissions & Penalties
Please refer to the Late Submission & Penalties section of Policy.
https://policies.scu.edu.au/view.current.php?id=00255
Grades & Feedback
Assessments that have been submitted by the due date will receive an SCU grade. Grades and
feedback will be posted to the ‘Grades and Feedback’ section on the Blackboard unit site. Please
allow 7 days for marks to be posted.
6
Assessment Brief
Assessment Rubric
Marking Criteria and %
allocation
High Distinction
(85–100%)
Distinction
(75–84%)
Credit
(65–74%)
Pass
(50–64%)
Fail
(0–49%)
Analyse and convert
data types
(ULO2 & 4)
20%
String data from CSV files is
analysed and converted
flawlessly, demonstrating an
advanced understanding of
data type conversion.
Potential issues are proactively
identified and resolved,
ensuring optimal program
efficiency and data integrity.
String data from CSV files is
accurately converted,
showcasing a welldeveloped understanding of
data type conversion.
Potential issues are
effectively addressed,
maintaining high program
efficiency and data integrity.
String data from CSV files is
consistently converted
accurately, reflecting a solid
grasp of data type
conversion principles.
Common issues are
identified and corrected,
supporting smooth program
operation.
String data from CSV files is
adequately converted with
minor errors, indicating a
basic understanding of data
type conversion.
Fundamental issues are
addressed to sustain
program functionality.
Struggles with accurate
conversion of string data
from CSV files, revealing
limited understanding and
compromising data integrity
and program performance.
Significant conversion issues
remain unresolved.
Design and implement
class concepts
(ULO3)
40%
Demonstrates exemplary skills
in designing and implementing
sophisticated class structures,
demonstrating deep insights
into object-oriented concepts,
and creating highly efficient,
well-encapsulated code.
Demonstrates strong
proficiency in class design
and implementation,
showing a thorough
understanding of objectoriented principles and
producing efficient, wellstructured code.
Demonstrates competent
ability in designing and
implementing classes,
effectively applying objectoriented principles to
produce functional and
organised code.
Adequately designs and
implements class structures,
demonstrating basic
understanding of objectoriented concepts with code
that meets essential
requirements.
Struggles with designing and
implementing class
structures, showing limited
understanding of objectoriented concepts, resulting
in ineffective and
disorganised code.
Apply error handling
and validation
strategies
(ULO2)
20%
Applies comprehensive error
handling and validation
strategies, ensuring robust
program resilience and
flawless handling of all
potential exceptions.
Applies effective error
handling and validation
strategies, significantly
enhancing program stability
and effectively managing
most exceptions.
Adequately applies error
handling and validation
strategies, maintaining
program stability and
addressing common
exceptions appropriately.
Applies basic error handling
and validation strategies,
covering essential
exceptions and maintaining
minimal program continuity.
Fails to apply effective error
handling and validation
strategies, resulting in
program instability and
inadequate management of
exceptions.
Evaluate and utilise
collections
(ULO4)
20%
Evaluates and utilises
advanced collection types,
demonstrating strategic
choices that optimise data
management and program
efficiency.
Evaluates and uses
appropriate collection types,
significantly enhancing data
handling and program
functionality.
Evaluates and employs
suitable collection types,
showing a good
understanding of their
impact on data
management and program
performance.
Adequately selects and
utilises basic collection
types, meeting fundamental
requirements for data
management and program
operation.
Struggles to choose or use
collections effectively,
resulting in suboptimal data
management and program
performance.
7
Assessment Brief
Description of SCU Grades
High Distinction:
The student’s performance, in addition to satisfying all of the basic learning requirements, demonstrates distinctive insight and ability in researching, analysing and
applying relevant skills and concepts, and shows exceptional ability to synthesise, integrate and evaluate knowledge. The student’s performance could be described as
outstanding in relation to the learning requirements specified.
Distinction:
The student’s performance, in addition to satisfying all of the basic learning requirements, demonstrates distinctive insight and ability in researching, analysing and
applying relevant skills and concepts, and shows a well-developed ability to synthesise, integrate and evaluate knowledge. The student’s performance could be described
as distinguished in relation to the learning requirements specified.
Credit:
The student’s performance, in addition to satisfying all of the basic learning requirements specified, demonstrates insight and ability in researching, analysing and applying
relevant skills and concepts. The student’s performance could be described as competent in relation to the learning requirements specified.
Pass:
The student’s performance satisfies all of the basic learning requirements specified and provides a sound basis for proceeding to higher-level studies in the subject area.
The student’s performance could be described as satisfactory in relation to the learning requirements specified.
Fail:
The student’s performance fails to satisfy the learning requirements specified.

請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp
















 

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:代寫(xiě)ECON 8820、代做c++,Java程序語(yǔ)言
  • 下一篇:菲律賓商務(wù)簽證第二次拒簽 被菲律賓拒簽有哪些原因
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開(kāi)團(tuán)工具
    出評(píng) 開(kāi)團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

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

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

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                国产麻豆成人传媒免费观看| 91久久国产最好的精华液| 成人午夜视频免费看| 欧美xxx久久| 国产一区在线看| 亚洲天天做日日做天天谢日日欢| 91小视频免费观看| 麻豆国产欧美一区二区三区| 久久先锋影音av| 一本大道久久a久久综合婷婷| 亚洲成人动漫一区| 精品久久国产老人久久综合| 粉嫩aⅴ一区二区三区四区| 一区二区三区在线视频播放| 日韩一级成人av| 91麻豆免费在线观看| 日本不卡高清视频| 国产精品成人免费精品自在线观看| 日本韩国精品在线| 精品一区二区三区免费毛片爱| 欧美激情综合网| 欧美日韩视频专区在线播放| 国产成人鲁色资源国产91色综| 一个色在线综合| 日韩精品一区二| 欧美撒尿777hd撒尿| 黑人精品欧美一区二区蜜桃| 国产精品国产三级国产专播品爱网| 99免费精品在线观看| 久久爱www久久做| 亚洲精品v日韩精品| 精品动漫一区二区三区在线观看| 国产福利一区二区三区在线视频| 亚洲成人www| 亚洲色图丝袜美腿| 欧美国产一区二区| 精品毛片乱码1区2区3区| 欧美色大人视频| 99精品偷自拍| 成人福利电影精品一区二区在线观看 | 久久精品国产色蜜蜜麻豆| 亚洲天堂2016| 欧美韩日一区二区三区四区| 欧美精品一区二区蜜臀亚洲| 欧美日韩国产影片| 一本一本久久a久久精品综合麻豆| 麻豆91免费观看| 久久精品999| 精品一区二区国语对白| 久久精品国产精品亚洲红杏| 奇米一区二区三区| 日本不卡在线视频| 蜜芽一区二区三区| 麻豆精品一二三| 蜜桃久久久久久| 精品一区二区国语对白| 韩国三级中文字幕hd久久精品| 欧美96一区二区免费视频| 奇米精品一区二区三区四区| 午夜精品久久久久久久久久久 | 精品理论电影在线| 欧美成人福利视频| 国产婷婷一区二区| 国产精品夫妻自拍| 一区二区日韩av| 一级中文字幕一区二区| 亚洲成年人影院| 久久国产综合精品| 国产精品一区专区| 99久免费精品视频在线观看 | 91精品久久久久久蜜臀| 日韩午夜三级在线| 久久奇米777| 中文字幕一区二区三区在线不卡| 一区二区三区资源| 久久99国产精品免费网站| 99这里只有久久精品视频| 欧美蜜桃一区二区三区| 精品久久久影院| 中文字幕一区二区三区不卡| 亚洲va国产va欧美va观看| 精品一二线国产| 色综合欧美在线视频区| 日韩精品一区二区三区中文精品 | 五月婷婷久久综合| 国产在线精品一区二区不卡了| 成人福利视频网站| 欧美日韩久久不卡| 国产精品视频九色porn| 日韩成人午夜精品| av在线播放一区二区三区| 欧美一级高清片| 亚洲一区二区三区中文字幕| 国产盗摄女厕一区二区三区| 欧美日韩免费观看一区二区三区 | 久久精品一区四区| 一区二区三区 在线观看视频| 免费观看成人av| 色噜噜狠狠色综合欧洲selulu| 亚洲精品一区二区三区影院 | 91精品国产色综合久久| 中文字幕一区二区三区四区不卡| 精品中文字幕一区二区| 欧美性大战久久久久久久蜜臀 | 色哟哟国产精品免费观看| 精品毛片乱码1区2区3区| 亚洲图片欧美综合| 91老司机福利 在线| 国产丝袜在线精品| 激情av综合网| 日韩欧美亚洲另类制服综合在线| 亚洲午夜精品久久久久久久久| 91视视频在线观看入口直接观看www | 欧美国产精品久久| 蜜桃精品视频在线| 91麻豆精品国产自产在线 | 91免费观看在线| 中文字幕成人在线观看| 国产一区二区三区久久久| 日韩精品影音先锋| 青青草国产精品亚洲专区无| 欧美日韩情趣电影| 亚洲一本大道在线| 欧美在线播放高清精品| 亚洲丝袜美腿综合| 成+人+亚洲+综合天堂| 国产精品网站在线观看| 成人精品国产福利| 中文字幕不卡在线播放| 成人激情文学综合网| 国产精品午夜免费| 99精品久久99久久久久| 亚洲欧美色一区| 91免费看视频| 亚洲国产精品一区二区尤物区| 欧美亚洲综合另类| 天天射综合影视| 8x福利精品第一导航| 日韩av成人高清| 26uuuu精品一区二区| 国产99久久久国产精品潘金| 欧美激情综合五月色丁香小说| 91色视频在线| 欧美日韩美少妇 | 久久久精品国产免费观看同学| 成人短视频下载| 一区二区三区日韩欧美精品| 日韩亚洲欧美在线| 日韩午夜电影av| 日韩国产高清在线| 精品国产一区二区三区久久影院| 欧美日韩视频第一区| 天天综合色天天| 日韩一级黄色大片| 国产精品一二三在| 亚洲欧美电影院| 日韩精品一区在线| 99免费精品视频| 丝袜美腿亚洲综合| 国产三级欧美三级| 日本欧美大码aⅴ在线播放| 久久久99久久| 色欧美片视频在线观看| 婷婷一区二区三区| 欧美激情一区在线| 制服丝袜亚洲色图| 91丨九色丨国产丨porny| 日本美女一区二区三区视频| 日本一区二区三区高清不卡 | 国产盗摄女厕一区二区三区| 亚洲三级在线免费| 欧美mv日韩mv亚洲| 在线观看一区日韩| 国产福利91精品| 天堂蜜桃一区二区三区| 国产日韩一级二级三级| 在线免费观看视频一区| 国产精品综合久久| 午夜亚洲国产au精品一区二区| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 综合激情成人伊人| 精品国产网站在线观看| 日本高清不卡一区| 成人黄色片在线观看| 免费成人av在线| 亚洲国产精品人人做人人爽| 国产精品欧美久久久久无广告| 欧美一区二区在线看| 91福利区一区二区三区| 色哟哟一区二区在线观看| 国产精品国产成人国产三级| 欧美一级片免费看| 欧美三级在线视频| 91九色最新地址| 亚洲人午夜精品天堂一二香蕉| 久久网站最新地址| 精品国产91久久久久久久妲己| 日韩午夜激情视频| 日韩欧美成人激情| 日韩欧美不卡在线观看视频|