w3resource

Python: Divide a path on the extension separator

Python Basic: Exercise-106 with Solution

Write a Python program to divide a path by the extension separator.

Sample Solution:

Python Code:

# Import the 'os.path' module for working with file paths.
import os.path
# Iterate through a list of example file paths.
for path in ['test.txt', 'filename', '/user/system/test.txt', '/', '']:
    # Print the file path and its corresponding file extension using 'os.path.splitext()'.
    print('"%s" :' % path, os.path.splitext(path))

Sample Output:

"test.txt" : ('test', '.txt')                                      
"filename" : ('filename', '')                                      
"/user/system/test.txt" : ('/user/system/test', '.txt')            
"/" : ('/', '')                                                    
"" : ('', '') 

Flowchart:

Flowchart: Divide a path on the extension separator.

Python Code Editor:

 

Previous: Write a Python program to get the users environment.
Next: Write a Python program to retrieve file properties.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/python-basic-exercise-106.php