# Introduction In this project, you will learn how to extract numbers greater than 5 from a text file and print them out. ## ð Preview ```bash $ python FindDigits.py 876 ``` ## ðŊ Tasks In this project, you will learn: - How to open a text file and read its contents - How to extract specific numbers from a string - How to concatenate the extracted numbers into a new string - How to print the extracted numbers ## ð Achievements After completing this project, you will be able to: - Manipulate strings and extract specific data from them - Write a Python script to automate a simple data processing task - Apply your knowledge of file handling and string operations in Python
Click the virtual machine below to start practicing