diff options
-rw-r--r-- | LectureNotesOnPython.html | 46 | ||||
-rw-r--r-- | LectureNotesOnPython.rst | 45 |
2 files changed, 46 insertions, 45 deletions
diff --git a/LectureNotesOnPython.html b/LectureNotesOnPython.html index 600059c..aff0a09 100644 --- a/LectureNotesOnPython.html +++ b/LectureNotesOnPython.html @@ -1661,29 +1661,29 @@ What here shall miss, our toil shall strive to mend.'''</span> <span class="keyword">print</span><span class="punctuation">(</span><span class="literal string single">'</span><span class="literal string escape">\n</span><span class="literal string single">'</span><span class="operator">.</span><span class="name">join</span><span class="punctuation">(</span><span class="name">c</span><span class="punctuation">))</span> </pre> <p>以上程序运行会输出如下结果。</p> -<div class="line-block"> -<div class="line">a</div> -<div class="line">is</div> -<div class="line">this</div> -<div class="line">example</div> -<div class="line">PROLOGUE</div> -<div class="line">Romeo and Juliet</div> -<div class="line">Two households, both alike in dignity,</div> -<div class="line">Whose misadventured piteous overthrows</div> -<div class="line">In fair Verona, where we lay our scene,</div> -<div class="line">From ancient grudge break to new mutiny,</div> -<div class="line">The which if you with patient ears attend,</div> -<div class="line">And the continuance of their parents' rage,</div> -<div class="line">Is now the two hours' traffic of our stage;</div> -<div class="line">Where civil blood makes civil hands unclean.</div> -<div class="line">From forth the fatal loins of these two foes</div> -<div class="line">A pair of star-cross'd lovers take their life;</div> -<div class="line">The fearful passage of their death-mark'd love,</div> -<div class="line">Doth with their death bury their parents' strife.</div> -<div class="line">What here shall miss, our toil shall strive to mend.</div> -<div class="line">Which, but their children's end, nought could remove,</div> -<div class="line"><a class="reference external" href="https://genius.com/William-shakespeare-romeo-and-juliet-act-1-prologue-annotated#note-2756596">https://genius.com/William-shakespeare-romeo-and-juliet-act-1-prologue-annotated#note-2756596</a></div> -</div> +<pre class="literal-block"> +a +is +this +example +PROLOGUE +Romeo and Juliet +Two households, both alike in dignity, +Whose misadventured piteous overthrows +In fair Verona, where we lay our scene, +From ancient grudge break to new mutiny, +The which if you with patient ears attend, +And the continuance of their parents' rage, +Is now the two hours' traffic of our stage; +Where civil blood makes civil hands unclean. +From forth the fatal loins of these two foes +A pair of star-cross'd lovers take their life; +The fearful passage of their death-mark'd love, +Doth with their death bury their parents' strife. +What here shall miss, our toil shall strive to mend. +Which, but their children's end, nought could remove, +https://genius.com/William-shakespeare-romeo-and-juliet-act-1-prologue-annotated#note-2756596 +</pre> </div> </div> <div class="section" id="id24"> diff --git a/LectureNotesOnPython.rst b/LectureNotesOnPython.rst index 216c148..b5617be 100644 --- a/LectureNotesOnPython.rst +++ b/LectureNotesOnPython.rst @@ -1421,28 +1421,29 @@ Python 自带的排序算法最快, ``selection_sort`` 最慢。 以上程序运行会输出如下结果。 - -| a -| is -| this -| example -| PROLOGUE -| Romeo and Juliet -| Two households, both alike in dignity, -| Whose misadventured piteous overthrows -| In fair Verona, where we lay our scene, -| From ancient grudge break to new mutiny, -| The which if you with patient ears attend, -| And the continuance of their parents' rage, -| Is now the two hours' traffic of our stage; -| Where civil blood makes civil hands unclean. -| From forth the fatal loins of these two foes -| A pair of star-cross'd lovers take their life; -| The fearful passage of their death-mark'd love, -| Doth with their death bury their parents' strife. -| What here shall miss, our toil shall strive to mend. -| Which, but their children's end, nought could remove, -| https://genius.com/William-shakespeare-romeo-and-juliet-act-1-prologue-annotated#note-2756596 +:: + + a + is + this + example + PROLOGUE + Romeo and Juliet + Two households, both alike in dignity, + Whose misadventured piteous overthrows + In fair Verona, where we lay our scene, + From ancient grudge break to new mutiny, + The which if you with patient ears attend, + And the continuance of their parents' rage, + Is now the two hours' traffic of our stage; + Where civil blood makes civil hands unclean. + From forth the fatal loins of these two foes + A pair of star-cross'd lovers take their life; + The fearful passage of their death-mark'd love, + Doth with their death bury their parents' strife. + What here shall miss, our toil shall strive to mend. + Which, but their children's end, nought could remove, + https://genius.com/William-shakespeare-romeo-and-juliet-act-1-prologue-annotated#note-2756596 |