We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
html
import difflib s1 = 'abcdefghij' s2 = 'bbcdefghij' difflib.SequenceMatcher(None, s1, s2).quick_ratio()
0.9
和顺序无关
import difflib s1 = 'abcdefghij' s2 = 'jihgfedcba' difflib.SequenceMatcher(None, s1, s2).quick_ratio()
1.0
The text was updated successfully, but these errors were encountered:
#2
Sorry, something went wrong.
No branches or pull requests
Reference
Brief
html
格式的对比结果方法
Examples
和顺序无关
The text was updated successfully, but these errors were encountered: