AndroidCodingWorld is all about the fundamentals of Programming Language, Software Design, Problem Solving Skills(Big-O Complexity), Core-Java, Kotlin, Ktor ,Data-Structures, Algorithms, Design-Patterns, Android Application Development, Microservices, Python Development(Back-End,FLASK), Spring Boot, Microservices, REST API's
Sunday, October 27, 2019
Python program to retrieve all words staring with a numeric digit
import re
str = 'The meeting will be conducted
on 1st and 21st of every month'
res = re.findall(r'\d[w]*' , str)
for word in res:
print(word)
No comments:
Post a Comment