Created
November 26, 2020 17:16
-
-
Save ahmedshahriar/3c99ff11781c2b17ba889be20de1a234 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
simplify price with currency sign to number | |
""" | |
# sample | |
txt = "$5,200" | |
txt[1:].replace(',','') | |
# output | |
# 5200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment