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

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫CSC1002、代做Python程序語言
代寫CSC1002、代做Python程序語言

時間:2025-04-08  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CSC1002 – Computational Laboratory
Console-Based Editor - Basic - 2025
OVERVIEW
In this assignment, you are going to design and develop a simple, basic console-based editor. Unlike the 
modern, advanced editor which provides a sophisticated editing environment, utilizing the high resolution of the graphical screen together with the mouse and the keyboard to position and adjust any 
text and figures displayed on the screen, giving us the WYSIWYG (What-You-See-Is-What-You-Get) 
experience. 
In the early days, lacking access to a rich graphical display and mouse, the functionality of editors was 
limited, providing only a much simpler user interface, usually console-based. Editing was carried out 
based on simple text commands entered via the keyboard, commands such as inserting (i) and 
appending (a) a text string, positioning the editor cursor one character position to the left (h), one 
character position to the right (l), one-word position forwards (w), one-word position backwards (b), and
so on. 
 
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
SCOPE 
1. Complete all the following editor commands:
NOTE: Refer to the section “Specific Spec” for more information on particular requirements. 
2. Case-sensitive commands - all editor commands are case-sensitive, for example, the capital 
letter ‘A’ does not equal the lowercase letter ‘a’. 
3. Command types - most commands are single-letter (in lower case) commands (such as ?, $, x, ^, 
…etc), while some are two-letter (such as dw). Most commands do not require extra input, 
while a few do, such as insert (i) and append (a). 
4. Command prompt (>) - The prompt is a single character string ‘>’. See the screenshots on the 
first page. 
5. Command Syntax - “Command[Text]”, where “Command” is one of the commands shown in 
step 1, and “Text” applies only to commands requiring extra input such as insert (i) and append 
(a). Note: any commands whose description includes a substring enclosed in “<>” brackets 
require extra input “Text”. 
6. Command Parsing - the user types a single command and then presses the return key to 
continue. Parse each command string according to “Command Syntax” to ensure that the input 
string matches EXACTLY one of the commands from step 1, including the extra input “Text” if 
required. When invalid input is entered, simply display another prompt as illustrated in the
following screenshot. 
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
a. Examples of valid command input: 
i. “$” 
ii. “^” 
iii. “h” 
iv. “x” 
v. “ahello world” 
vi. “i hello world “ 
b. Examples of invalid command input: 
i. “ $” 
ii. “ ?” 
iii. “? “ 
iv. “ ahello world” 
v. “i” 
7. Command Execution - the editor will repeatedly prompt the user to enter an editor command, 
execute the command, and then output the updated content on the display console (except for 
commands ‘?’ and ‘q’, see Note follows). After the updated content is displayed, the editor will 
display a new prompt on a new line. Refer to the section “Sample Output” for more examples. 
Note: when the help command (?) is entered, output only the help menu as shown in step 1; 
when the quit command (‘q’) is entered, terminate the program. 
NOTE: 
• Keep your entire source code in ONE SINGLE file. 
• Use only Python modules as specified in the “Permitted Modules” section. 
• In your design stick ONLY to functions, in other words, no class objects of your own. 
o Furthermore, the lines of code containing the sub-function(s) defined within another 
function will be counted as part of the parent function. 
o NOTE: Failure to adhere to the instructions outlined in the assignment handout will 
result in a 50% reduction in the coding style score.
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
SPECIFIC SPEC
1. Editor content - the editor shows its content, if any, as a single line of text string constructed by 
one or multiple Insert/Append commands. If the row cursor is enabled, it shows its position in a 
color such as green. When the editor program initially starts, its content is empty. Refer to the 
section “Sample Output” for more examples. 
2. Row cursor - it’s used to show where the cursor is on the current row if not empty. In other 
words, the cursor will appear on printable characters including space. The cursor is shown by 
wrapping a character with a pair of escape character strings such as “\033[42m” and “\033[0m”. 
For example, given a string “hello world”, to show the green cursor at the position of the letter 
‘e’, this is the string to print: “h” + “\033[42m” + “e” + “\033[0m” + “llo world”. 
3. Insert - the given string “Text” will be inserted to the left of the cursor and the cursor position 
will be changed to the beginning of the “Text” string. 
4. Append - the given string “Text” will be inserted to the right of the current cursor position and 
the cursor position will be changed to the end of the “Text” string. 
5. Delete word - delete all characters from the cursor position to the beginning of the next word or 
to the end of the line. 
6. Cursor left and right - when repositioning the cursor to the left or right, one or multiple 
positions, and if the cursor is already at the far left or far right position, leave the cursor where it 
is. 
7. Undo - it’s used to reverse the change(s) made to the editor content including the row cursor 
positions based on the most recent commands. If multiple consecutive undo commands are 
executed, each will undo one command at a time in the reverse order that the commands were 
originally executed. For example, given the last 2 valid commands are “ahello” followed by “a 
world”, the first undo command will reverse the “a world”, and the second consecutive undo
command will reverse “ahello”. Refer to the following figure for an illustration. 
8. Repeat - The “Repeat” command is used to re-execute the last valid command and it offers the 
convenience of sparing the user from retyping it again. The “Repeat” command is not 
applicable to the Undo and Help commands. For example, consider the command sequence: 
“ahello”, “a world”, “?”, and “u”. If the command “r” is subsequently entered multiple times, 
each Repeat command will always re-execute “ahello”. Refer to step “Undo followed by Repeat” 
for another illustration. 
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
9. Undo followed by Repeat - In this case, the “Undo” is not considered as the last command and 
the "Repeat" command is used to target the command immediately preceding the "Undo" 
command, not the most recent action performed. Any command entered prior to the "Undo"
will be re-executed upon triggering the "Repeat" command. Refer to the following figure for an 
illustration. 
10. b command - it moves the cursor to the beginning of the word to the left of the cursor. If the 
cursor is within a word, the cursor will be placed at the word's first letter. Refer to the following
figure for an illustration. 
11. Word - a word is defined as a sequence of consecutive characters including punctuations but not 
white space, in other words, any group of characters without spaces is considered a single word, 
even if it includes punctuation marks. Refer to the following figure for an illustration.
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
ASSUMPTIONS
1. The goal of this assignment is to illustrate the benefits of “Problem Decomposition”, “Clean 
Coding” and “Refactoring”, all together achieving high code readability to ease logic expansion 
and keep high maintainability, therefore, it’s not aimed at designing a complex, general-purpose 
editor for handling large editing content. 
2. It’s assumed that the length of each line is kept within a reasonable length so that each line can 
be stored directly using the standard Python ‘str’ type. The number of lines is also kept within a 
reasonable number so that all lines can be kept in one standard Python list and the lines can be 
efficiently updated using the standard list and str operations such as append, insert, slicing, 
cloning, …etc. 
3. It is assumed that the user will not input a command that consumes excessive memory and 
leads to a buffer overflow (also called memory overflow or overrun) at runtime, such as 
inserting a very long string like “ihello …………………………. world.” In other words, all test cases 
executed against your program will be based on the commands from step 1 (Scope) with a 
short“Text” string. 
4. Each test case is designed to evaluate the functionality and correctness of your program, rather 
than its speed, performance and memory usage. Each test case consists of multiple editing 
commands with short “Text”. 
5. The text editor is required to handle only regular English characters, thus additional unicode 
support, if any, is unnecessary. 
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
STARTUP OPTIONS
Not applicable 
SKILLS
In this assignment, you will be trained on the use of the followings: 
• Refactoring - logic reuse or simplification based on the existing logic. 
• Variable scope: global, local and function parameters. 
• Coding Styles (naming convention, meaningful names, comments, doc_string, …etc) 
• Problem Decomposition, Clean Code, Top-Down Design 
• Functions (with parameters and return) for program structure and logic decomposition 
• Standard objects (strings, numbers & lists) 
• Variable Scope 
PERMITTED MODULES
Only the following Python module(s) is allowed to be used: 
• re (regular expression) 
DELIVERABLES
Program source code (A1_School_StudentID.py), where School is SSE, SDS, SME, HSS, FE, LHS, MED and 
StudentID is your 9-digit student ID. 
For instance, a student from SME with student ID “119010001” will name the Python file as follows:
• A1_SME_119010001.py: 
Ensure that your source file is saved in standard, regular UTF-8 encoding format. On the status bar of 
Visual Studio Code, you can view the current encoding format as follows: 
On an occasion, the encoding scheme is set to UTF-8 with BOM as follows: 
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
The presence of the Byte Order Mark (BOM) could be due to copying from websites, older version of 
editor, file conversion from other sources, default encoding setting, and so on. 
Confirm the encoding scheme is UTF-8 and the file name is correct, then submit the plain program file to 
the corresponding assignment folder. A deduction of 5% will be penalized if the file is incorrectly named 
or in wrong encoding format.
TIPS & HINTS
• Apply problem decomposition, Clean Code and Refactoring as illustrated during classes. 
• Beware of variable scope as you might keep a few variables as global such as current editor 
content, cursor position, undo buffer, and so on. 
• Refer to Python website for program styles and naming conventions (PEP 8) 
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
SAMPLE OUTPUT
 
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
MARKING CRITERIA
• Coding Styles – overall program structure including layout, comments, white spaces, naming 
convention, variables, indentation, functions with appropriate parameters and return. 
• Program Correctness – whether or the program works 100% as per Scope. 
• User Interaction – how informative and accurate information is exchanged between your 
program and the player. 
• Readability counts – programs that are well structured and easy to follow using functions to 
break down complex problems into smaller cleaner generalized functions are preferred over a 
function embracing a complex logic with many nested conditions and branches! In other words, 
a design with a clean architecture and high readability is the predilection for the course 
objectives over efficiency. The logic in each function should be kept simple and short, and it 
should be designed to perform a single task and be generalized with parameters as needed. 
• KISS approach – Keep It Simple and Straightforward. 
• Balance approach – you are not required to come up with a very optimized solution. However, 
take a balance between readability and efficiency with good use of program constructs. 
DUE DATE
March 2nd, 2025, 11:59:00PM 
ITEMS PERCENTAGE REMARKS
CODING STYLES 30%-40% 0% IF PROGRAM DOESN’T RUN
FUNCTIONALITY 60%-70% REFER TO SCOPE
CSC1002 – 2025 Winter By Kinley Lam

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇:COMP4033代寫、代做c/c++,Python編程
  • 下一篇:代寫COMP20007、代做C/C++編程設計
  • 無相關信息
    合肥生活資訊

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

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    黄色一级视频在线播放| 欧美黄网免费在线观看| 狠狠色综合一区二区| 亚洲一区二区三区在线观看视频| 国产精品久久一区主播| 久久国产欧美精品| 91精品国产99| 91精品久久久久久| 97精品欧美一区二区三区| 国产伦精品一区| 成人免费毛片网| 超碰97网站| 国模私拍视频一区| 精品1区2区| 精品视频一区二区三区四区| 激情小视频网站| 蜜桃成人免费视频| 蜜臀精品一区二区| 国产精品一 二 三| 91久久久精品| 久久久久免费精品| 国产成人亚洲综合青青| 久久久久久久国产精品视频| av网址在线观看免费| 浮妇高潮喷白浆视频| 国产免费一区二区三区视频| www国产黄色| 国产毛片视频网站| 97福利一区二区| 国产精品999| 久久一区二区三区欧美亚洲| 视频直播国产精品| 国产精品精品一区二区三区午夜版| 国产精品国内视频| 欧美成人一区在线| 亚洲成人第一| 欧美一级大胆视频| 国产在线精品一区二区中文| 国产欧美日韩中文字幕| 91精品国产自产在线| 久久久久久久久久久99| 欧美成人免费va影院高清| 美女精品久久久| 欧美一区二区视频在线| 男人亚洲天堂网| 97精品国产97久久久久久春色| 久久99国产精品99久久| 精品国产综合区久久久久久| 午夜精品美女自拍福到在线| 黄色a级片免费| 2019日韩中文字幕mv| 国产精品日韩一区| 亚洲精品成人久久久998| 欧美精品卡一卡二| 国产精品999999| 精品产品国产在线不卡| 日韩一区二区三区资源 | www亚洲国产| 久久精品美女视频网站| 亚洲一区二区三区精品视频| 欧美精品七区| 91精品久久久久| 久久艹在线视频| 无码av天堂一区二区三区| 蜜桃久久精品乱码一区二区| 国产成人在线视频| 亚洲制服欧美久久| 国产色一区二区三区| 久久精品电影一区二区| 午夜欧美性电影| 国产精品一区二区三区免费观看| 国产a视频免费观看| 美女精品久久久| 狠狠综合久久av| 久久久久久久999| 午夜精品一区二区三区在线视频| 国产日韩欧美在线看| 久久久久久精| 日韩中文字幕一区二区| 麻豆精品视频| 久久精品一本久久99精品| 日韩 欧美 自拍| 国产精品99久久久久久久| 中文字幕第一页亚洲| 国产一区二区三区乱码| 国产成人无码a区在线观看视频| 中文字幕剧情在线观看一区| 日韩精品无码一区二区三区| 成人福利视频网| 国产精品福利无圣光在线一区| 欧美日韩喷水| 国产成人久久久精品一区| 热久久精品免费视频| 色偷偷88888欧美精品久久久| 日本一区网站| 国产成人短视频| 人妻夜夜添夜夜无码av| 久久久国产精品免费| 欧美自拍资源在线| 久久精品国产精品国产精品污| 日韩高清av| 国产精品午夜国产小视频| 国产精品久久久久久久久久久久午夜片 | 青青草视频在线视频| 国产不卡一区二区三区在线观看 | 国产精品视频公开费视频| 欧美日韩在线不卡视频| 国产成人免费观看| 免费观看国产成人| 久久天堂电影网| 青青在线免费观看| 91av成人在线| 日韩欧美精品在线不卡| 日韩在线观看免费av| 欧美精品第三页| 国产精品久久久久999| 蜜桃av久久久亚洲精品| 在线视频欧美一区| 极品日韩久久| 伊人久久99| 国产成人一区二区在线| 日本精品va在线观看| 久久久精品久久久久| 国产无套内射久久久国产| 亚洲最大福利网| 91久久久久久久一区二区| 日韩av色综合| 国产精品网站入口| 国产伦精品一区二区三区在线| 欧美精品电影在线| 2019日韩中文字幕mv| 日本午夜一区二区三区| 国产精品美女av| 国产精品一区视频| 日本人成精品视频在线| 国产精品美女诱惑| 91精品久久久久久久久久另类| 欧美精品久久久久久久免费| 久久不射电影网| 国产极品jizzhd欧美| 日韩久久久久久久久久久久久| 久久成人一区二区| 91精品国产综合久久香蕉| 欧美黄色直播| 亚洲精品中文字幕在线| 国产精品免费一区二区三区观看| 99精彩视频| 虎白女粉嫩尤物福利视频| 色中文字幕在线观看| 精品中文字幕在线2019| 久久久久久九九九九| 97国产精品久久| 国产日韩在线精品av| 人人爽久久涩噜噜噜网站| 在线视频不卡国产| 久久国产日韩欧美| 国产欧美日本在线| 欧美 国产 精品| 日本精品一区在线观看| 伊人久久婷婷色综合98网| 国产精品青青草| 国产成+人+综合+亚洲欧美丁香花| 麻豆91蜜桃| 欧美这里只有精品| 亚洲图片在线观看| 超碰91人人草人人干| 日韩中文字幕网址| 国产福利片一区二区| 国产色综合天天综合网| 欧美久久久久久久久久久久久 | 国产专区一区二区| 日韩精品不卡| 日本视频一区在线观看| 亚洲一区二区三区加勒比| 国产精品久久久久久久久粉嫩av | 亚洲国产精品123| 国产av第一区| 国产精品久久久久一区二区| 日韩有码在线播放| 国产精品夜色7777狼人| 国产亚洲二区| 免费高清在线观看免费| 日韩a在线播放| 日本视频一区在线观看| 无码少妇一区二区三区芒果| 亚洲AV无码成人精品一区| 亚洲伊人第一页| 伊人久久大香线蕉午夜av| 一区二区精品免费视频| 一区二区三区av| 亚洲综合最新在线| 欧美激情亚洲综合一区 | 日本a视频在线观看| 一本—道久久a久久精品蜜桃| 久久精品亚洲热| 国产精品欧美一区二区| 丝袜美腿亚洲一区二区| 久久久成人精品一区二区三区| 国产成人精品免费视频大全最热 | 国产va亚洲va在线va|