HackerRank Python Solution - Regex and Parsing - Re.split()

  • You are given a string s consisting only of digits 0-9, commas ,, and dots .
  • Your task is to complete the regex_pattern defined below, which will be used to re.split() all of the , and . symbols in s.
  • Every comma and every dot in s is guaranteed to be preceded and followed by a digit.
Sample Input:

100,000,000.000
Sample Output:

100
000
000
000
Solution:

regex_pattern = r"[,.]"	

import re
print("\n".join(re.split(regex_pattern, input())))
Note: The problem statement is given by hackerrank.com but the solution is generated by the Geek4Tutorial admin. We highly recommend you solve this on your own, however, you can refer to this in case of help. If there is any concern regarding this post or website, please contact us using the contact form. Thank you!

No comments:

Post a Comment

You might also like

Deploy your Django web app to Azure Web App using App Service - F1 free plan

In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...