Skip to content

Instantly share code, notes, and snippets.

@mrshu
Last active December 23, 2020 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrshu/64ec17eee8c68ce6a40a964fcdda6b77 to your computer and use it in GitHub Desktop.
Save mrshu/64ec17eee8c68ce6a40a964fcdda6b77 to your computer and use it in GitHub Desktop.
A sample DataFrame with original and edited questions
import pandas as pd
df = pd.DataFrame([
{
'original': "Can you tell us a bit more abt how scalable your solution is?",
'edited': "Can you tell us a bit more about how scalable your solution is?",
},
{
'original': "What will our priorities be for the next quarter?",
'edited': "What will our priorities be for the next year?",
},
{
'original': "What is the best way of contacting you? I need to ask something...",
'edited': "What is the best way of contacting you?",
}
])
edited original
Can you tell us a bit more about how scalable your solution is? Can you tell us a bit more abt how scalable your solution is?
What will our priorities be for the next year? What will our priorities be for the next quarter?
What is the best way of contacting you? What is the best way of contacting you? I need to ask something...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment