Learn Python automated operations Diff-text

Source: Internet
Author: User

1. Compare Diff_text Two text differences by HTML

#!/usr/bin/env python


Import Difflib


Text1 = "" "Text1:

This module provides classes and functions for comparing sequences.

including HTML and context and unified diffs.

Difflib Document v7.4

Add string

"""

Text1_lines = Text1.splitlines ()

Text2 = "" "Text2:

This module provides classes and functions for comparing sequences.

including HTML and context and unified diffs.

Difflib Document v7.5

"""


Text2_lines = Text2.splitlines ()


D = difflib. Htmldiff ()

Print D.make_file (Text1_lines, Text2_lines)


2. Compare by difference relationship

#!/usr/bin/env python


Import Difflib


Text1 = "" "Text1:

This module provides classes and functions for comparing sequences.

including HTML and context and unified diffs.

Difflib Document v7.4

Add string

"""

Text1_lines = Text1.splitlines ()

Text2 = "" "Text2:

This module provides classes and functions for comparing sequences.

including HTML and context and unified diffs.

Difflib Document v7.5

"""


Text2_lines = Text2.splitlines ()


D = difflib. Differ ()

diff = D.compare (text1_lines, Text2_lines)

print ' \ n '. Join (List (diff))


Learn Python automated operations Diff-text

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.