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

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

CSC1002代寫、代做Python編程設計
CSC1002代寫、代做Python編程設計

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



CSC1002 – Computational Laboratory
Console-Based Editor - Multi-Line - 2025
OVERVIEW
In this assignment, you are going to design and develop a simple, basic console-based editor to support 
multi-line editing. Unlike the modern, advanced editor such as Microsoft Word which provides users 
with 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 and the section “Assumptions” for any conditions for which the program 
is designed and implemented.
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 ‘>’ by calling input(‘>’). See the 
screenshots on the first page.
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
5. Command Syntax - “Command[Text]”, where “Command” is one of the commands shown in 
step 1, “Text” applies only to commands requiring extra input such as insert (i) and append (a). 
Any commands whose description includes a substring enclosed in “<>” brackets require extra 
input “Text”. “LineNo” is an integer value indicating the line number to which the line cursor 
position is set.
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.
a. Examples of valid command input:
i. “$”
ii. “^” 
iii. “h”
iv. “l”
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, 
parse the input according to the “Command Syntax”, execute the command (if valid), and then 
output the latest editor content (even there are no changes to the content) on the display 
console (except for commands ‘?’ and ‘q’, see Note follows). After the editor content is 
displayed, the editor will display another prompt (‘>’) on a new line. Refer to the section 
“Sample Output” for more examples.
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
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.
SPECIFIC SPEC
1. Editor content - the editor shows its content, if any, as a single or multiple lines of text string 
constructed by one or multiple Insert/Append/Paste commands. If the row cursor is enabled, it 
shows its position in a color such as green. If the line cursor is enabled, the content will be 
shifted one space to the right to show line cursor as a ‘*’ symbol. 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. When all characters are deleted, the line becomes empty. Refer to the
following figures for an illustration.
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
6. Delete Character - delete the character at cursor. When all characters are deleted, the line 
becomes empty. 
7. 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.
8. Undo - it’s used to reverse the action of the last valid command, including change(s), if any, 
made to the editor content and/or the cursor (row, line) position(s). Once a command is 
undone, it’s no longer available for future Undo and Repeat. 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”. Commands such as “s” and “?’ are not 
candidates for Undo as they do not make any changes to the editor content, the same applies to 
Repeat command. Refer to the following figure for an illustration.
9. 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. Commands “u”, “?”, and “s” are not 
candidates for the “Repeat” command as these commands do not directly update the editor 
content. For example, consider the command sequence: “ahello”, “a world”, “?”, “s” 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.
10. 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.
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
11. b command - it moves the cursor to the beginning of the word to the left of the cursor, provided 
that such a word exists; if no such word exists, the cursor remains stationary. If the cursor is 
positioned within a word, it will be placed at the first letter of that word. Refer to the following
figure for an illustration.
12. w command - it moves the cursor to the beginning of the word to the right of the cursor, 
provided that such a word exists; if no such word exists, the cursor remains stationary.
13. Word - a word is defined as a sequence of consecutive characters including punctuation 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
14. Line Copy - it’s used to copy or duplicate the content of the current line, including newly 
inserted empty lines. The copied line is then pasted into the editor content using the Paste 
command. Only one copied line is kept at a time, in other words, subsequent “Line Copy” will 
replace the cached line with the content of the current line. When the editor’s content is 
empty, the Line Copy command will not perform any action.
15. Line cursor - it’s used to show the current row being edited by prefixing it with a character ‘*’, 
while other rows are shown with a single space. Refer to the following figure(s) for an 
illustration.
16. Cursor up and down - when repositioning the cursor to the line either above or below and if its 
length is shorter, position the cursor to the end of the line (similar to ‘$’). If the cursor is already 
on the first or the last line, do not jump the cursor from top to bottom and vice versa, in other 
words, leave the row cursor where it is. Refer to the following figure(s) for an illustration.
17. Empty Line insert Above/Below - it inserts an empty row above or below the current line and
adjusts the line cursor accordingly. Refer to the following figure(s) for an illustration.
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
18. Line Paste Above/Below - it pastes the last copied line(s) above or below the current line and 
adjusts the line cursor accordingly. Adjust the row cursor position as if it was re-positioned by 
having it moved up or down from the current line to the pasted line. Refer to the following 
figure(s) for an illustration.
19. Line Delete - delete the current line and adjusts the line and row cursors accordingly. Refer to 
the following figure(s) 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. 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” and small “Repeater” values.
4. The text editor is required to handle only regular English characters, thus additional unicode 
support, if any, is unnecessary.
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
CSC1002 – 2025 Winter By Kinley Lam
CSC1002 – Computational Laboratory
PERMITTED MODULES
Only the following Python module(s) is allowed to be used:
• re (regular expression)
DELIVERABLES
Program source code (A3_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:
• A3_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:
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
Note: please also refer to the first assignment for more sample output.
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
May 5th, 2025, 11:59PM
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

掃一掃在手機打開當前頁
  • 上一篇:ECE371編程代做、代寫Python程序設計
  • 下一篇:代做ENVM Species Distribution 、代寫Python
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    欧美精品一区免费| 青青草影院在线观看| 国产成人av影视| 精品婷婷色一区二区三区蜜桃| 日本a在线天堂| 久久99亚洲精品| 精品国产乱码一区二区三区四区| 久久久久久久少妇| 久久久亚洲网站| 777国产偷窥盗摄精品视频| 91国产视频在线播放| 蜜桃免费区二区三区| 日韩精品视频一区二区在线观看| 午夜精品久久久久久久99热浪潮 | 成人av免费电影| 国产精品一区二区你懂得| 国产一区免费在线观看| 免费毛片一区二区三区久久久| 亚洲区一区二区三区| 精品国产aⅴ麻豆| 国产精品久久久久9999小说| 久久久成人精品| 久久国产午夜精品理论片最新版本| 81精品国产乱码久久久久久 | 手机看片福利永久国产日韩| 亚洲精品一卡二卡三卡四卡| 中文字幕日韩精品一区二区| 亚洲最大福利视频网站| 午夜精品一区二区三区av| 日日摸日日碰夜夜爽无码| www.久久草| 成人免费毛片播放| 久久噜噜噜精品国产亚洲综合| 国产精品91久久久| 久久久久久国产精品一区| 国产精品久久久久久久小唯西川| 久久不射电影网| 午夜午夜精品一区二区三区文| 午夜精品久久久久久久男人的天堂 | 欧美极品在线视频| 性欧美激情精品| 精品日产一区2区三区黄免费 | 一区二区三区四区五区视频| 日韩中文字幕三区| 超碰97人人人人人蜜桃| 日韩在线视频免费观看| 欧美成人免费在线观看| 欧美人与动牲交xxxxbbbb| 国产z一区二区三区| 日本中文字幕久久看| 91精品视频在线免费观看| 欧美激情视频一区| 国产又粗又爽又黄的视频| 国产精品美女久久久久av福利 | 国产精品视频精品| 欧美精品亚洲| 精品国偷自产在线视频99| 日本不卡视频在线播放| 7777免费精品视频| 欧美激情亚洲激情| 精品少妇在线视频| 日本精品免费在线观看| 91精品视频在线播放| 亚洲最大成人网色| 99在线观看视频网站| 国产精品区免费视频| 日韩激情视频一区二区| 国产免费观看久久黄| 国产精品久久久久免费a∨大胸| 日本999视频| 久久本道综合色狠狠五月| 川上优av一区二区线观看| 久久久久中文字幕2018| 欧美亚洲精品一区二区| 国产aⅴ夜夜欢一区二区三区| 99免费视频观看| 日本亚洲欧洲精品| 国产精品国产三级国产专播精品人| 隔壁老王国产在线精品| 日韩免费在线播放| 久久国产色av| 久久精品第九区免费观看| 欧美动漫一区二区| 亚洲精品无码久久久久久| 精品国产依人香蕉在线精品| 国产欧美日韩丝袜精品一区| 欧美又大粗又爽又黄大片视频| 欧美巨猛xxxx猛交黑人97人| 国产不卡av在线| 国产精品羞羞答答| 精品欧美一区二区在线观看视频 | 日韩av综合在线观看| 九九久久久久久久久激情| 久久久久久久激情| 99久久国产免费免费| 美女精品国产| 日韩专区第三页| 久久亚洲私人国产精品va| 日韩中文字幕视频| 国产成人黄色av| 97久久伊人激情网| 国产无限制自拍| 欧美专区福利在线| 日韩国产一级片| 日本国产一区二区三区| 亚洲a中文字幕| 亚洲色婷婷久久精品av蜜桃| 精品久久sese| 久99久在线视频| 中文字幕成人一区| 中文字幕日韩一区二区三区| 国产精品久久久久9999小说| zzijzzij亚洲日本成熟少妇| www.xxxx精品| 国产精品欧美日韩久久| 国产精品成人一区| 一区二区三区四区免费观看| 国产精品久久久久9999小说 | 91精品国产乱码久久久久久蜜臀| 国产精品久久久久久久久久小说| 国产精品沙发午睡系列| 国产精品久久综合av爱欲tv| 久久亚洲精品成人| 国产精品久久久久久久一区探花| 国产成人精品在线观看| www.欧美三级电影.com| 国产精品你懂得| 中文字幕不卡每日更新1区2区| 色999日韩自偷自拍美女| 欧美少妇一区二区三区| 国产精品自拍合集| 久草精品在线播放| 精品国产乱码久久久久久108| 亚洲va久久久噜噜噜久久天堂| 欧美中文娱乐网| 91美女福利视频高清| 久久久精品日本| 亚洲资源在线看| 日本高清视频一区| 青青青免费在线| 成人国产精品色哟哟| 精品国产一区二区在线| 国产aaa免费视频| 欧美日韩亚洲在线 | 久久久久久国产三级电影| 在线天堂一区av电影| 欧美日韩精品免费观看| 91免费版网站入口| 精品久久中出| 欧美亚洲精品一区二区| 久久久精彩视频| 亚洲中文字幕无码专区| 日韩av电影免费播放| 国产日韩视频在线播放| 国产成人免费av| 欧美一级黄色影院| 7777精品伊久久久大香线蕉语言| 色综合视频一区中文字幕| 精品视频在线观看一区二区 | 国产一区二区三区小说| 国产精品国产精品| 黄色网络在线观看| 国产精品丝袜久久久久久消防器材| 一区二区成人国产精品| 国产素人在线观看| 精品中文字幕在线观看| 国产一区二区三区四区五区在线| 国产精品老牛影院在线观看| 欧美极品欧美精品欧美图片| 九九九九久久久久| 国产高清一区二区三区| 国产精品50p| 日本高清不卡三区| 中文字幕一区二区三区四区五区人 | 久久精品国产v日韩v亚洲| 国产又粗又猛又爽又黄的网站| 亚洲精品中文字幕无码蜜桃| 久久九九国产精品怡红院| 成人91免费视频| 欧美日韩精品免费观看| 欧美影院在线播放| 欧美在线影院在线视频| 亚洲精品天堂成人片av在线播放| 国产精品入口福利| 久久人妻无码一区二区| 国产一区二区三区乱码| 欧美日韩精品免费看| 欧美午夜视频在线| 欧美日韩dvd| 一本久道综合色婷婷五月| 国产精品传媒毛片三区| 久久久久久久国产| 久久久久一区二区| 国产福利精品视频| 久久伊人一区二区| 国产黄页在线观看| 国产不卡av在线免费观看| 久久精品magnetxturnbtih| 九色综合婷婷综合| 日韩中文字幕在线视频|