代写COMP(2041|9044) 24T1 — Assignment 2: Eddy代做Python语言

COMP(2041|9044) 24T1 — Assignment 2: Eddy

Assignment 2: Eddy

Aims


This assignment aims to give you:

· practice in    Python programming generally.

· a clear and concrete understanding of    sed 's core semantics.

Introduction

Your task in this assignment is to write a Python program  eddy.py which implement the Eddy editing commands described below. Eddy editing commands are a simple subset of the important tool Sed which you met earlier in the course.

Sed is a very complex program that has many commands.

Eddy contains only a few of the most important Sed commands.

There are also some simplifying assumptions below, which make your task easier.

You must implement Eddy in Python only. The Permitted Languages section below has more information.

NOTE:

The more challenging parts of this assignment may require some research. You may need to explore documentation and other information for Python, Sed, and regexes. Searching for this type of information is a very useful skill to practice., The more challenging parts of this assignment may require some research.

You may need to explore documentation and other information for Python, Sed, and regexes. Searching for this type of information is a very useful skill to practice.,

Reference implementation

Many aspects of this assignment are not fully specified in this document;

instead, you must match the behaviour of the reference implementation: 2041 eddy

Provision of a reference implementation is a common method to provide or define an operational specification, and it's something you will likely need to do after you leave UNSW.

Discovering and matching the reference implementation's behaviour is deliberately part of the assignment, and will take some thought.

If you discover what you believe to be a bug in the reference implementation, report it in the class forum.

Andrew and Dylan may fix the bug, or indicate that you do not need to match the reference implementation's behaviour in this case.

Eddy Commands

Subset 0

In subset 0  eddy.py will always be given a single Eddy command as a command-line argument. The Eddy command will be one of 'q', 'p', 'd', or 's' (see below).

The only other command-line argument possible in subset 0 is the -n option. Input files will not be specified in subset 0.

For subset 0  eddy.py need only read from standard input. Subset 0: q - quit command

The Eddy q command causes  eddy.py to exit, for example:


$ seq 1 5 | 2041 eddy '3q'

1

2

3

$ seq 9 20 | 2041 eddy '3q'

9

10

11

$ seq 10 15 | 2041 eddy '/.1/q'

10

11

$ seq 500 600 | 2041 eddy '/^.+5$/q'

500

501

502

503

504

505

$ seq 100 1000 | 2041 eddy '/1{3}/q'

100

101

Eddy commands are applied to input lines as they are read. The q command means  eddy.py may not read all input.

For example, the command prints an "infinite" number of lines containing (by default) " yes".

$ yes | 2041 eddy '3q'

y

y

y

This means  eddy.py can not read all input first, e.g. into a list, before applying commands.

Subset 0: p - print command

The Eddy p commands prints the input line, for example:

$ seq 1 5 | 2041 eddy '2p'

1

2

2

3

4

5

$ seq 7 11 | 2041 eddy '4p'

7

8

9

10

10

11

$ seq 65 85 | 2041 eddy '/^7/p'

65

66

67

68

69

70

Subset 0: d - delete command

The Eddy d command deletes the input line, for example:

$ seq 1 5 | 2041 eddy '4d'

1

2

3

5

$ seq 1 100 | 2041 eddy '/.{2}/d'

1

2

3

4

5

6

7

8

9

$ seq 11 20 | 2041 eddy '/[2468]/d'

11

13

15

17

19

Subset 0: s - substitute command

The Eddy s command replaces the specified regex on the input line.

zzz3 zzz4 zzz5 zzz6 zzz7 zzz8 zzz9 20

$ seq 100 111 | 2041 eddy 's/11/zzz/'

100

101

102

103

104

105

106

107

108

109

zzz0

zzz1

The substitute command can be followed optionally by the modifier character g , for example:

$ echo Hello Andrew | 2041 eddy 's/e//'

Hllo Andrew

$ echo Hello Andrew | 2041 eddy 's/e//g'

Hllo And rw

g is the only permitted modifier character.

Like the other commands, the substitute command can be given addresses to be applied to:

53

54

99

56

57

58

59

60

$ seq 100 111 | 2041 eddy '/1.1/s/1/-/g'

100

-0-

102

103

104

105

106

107

108

109

110

---

Subset 0: -n command line option

The Eddy -n command line option stops input lines being printed by default.

$ seq 1 5 | 2041 eddy -n '3p'

3

$ seq 2 3 20 | 2041 eddy -n '/^1/p'

11

14

17

-n command line option is the only useful in conjunction with the p command, but can still be used with the other commands.

Subset 0: Addresses

All Eddy commands in subset0 can optionally be preceded by an address specifying the line(s) they apply to.

In subset 0, this address can either be a line number or a regex. The line number must be a positive integer.

The regex must be delimited with slash / characters. Subset 0: Regexes

In subset 0, you can assume backslashes \ do not appear in address or substitution regexes. In subset 0, you can assume semicolons ; do not appear in address or substitution regexes.  In subset 0, you can assume commas , do not appear in address or substitution regexes.

In subset 0, regexes are delimited with slash / characters, so you can assume slashes do not appear in regexes.

In subset 0 and all other subsets, you can assume the regex is correct. You do not have to check for errors in the regex. In subset 0 and all other subsets, you can assume the regex is a POSIX-compatible extended regular expression.

In subset 0 and all other subsets, you can assume the regex is compatible with Python.

In other words, the regex can be used directly as a Python regular expression, for example passed to   re.search , and will have the same meaning.

Note, if testing regular expressions with  sed , you need to specify  sed -E for extended regular expressions to work.



热门主题

课程名

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
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图