Category Archives: KB

Python | os.path.basename() method

Tags :

Category : python

Syntax: os.path.basename(path)

Parameter:
path: A path-like object representing a file system path.

Return Type: This method returns a string value which represents the base name the specified path.

Code: Use of os.path.basename() method

# Python program to explain os.path.basename() method 
	
# importing os.path module 
import os.path 

# Path 
path = '/home/User/Documents'


# Above specified path 
# will be splited into 
# (head, tail) pair as 
# ('/home/User', 'Documents') 

# Get the base name 
# of the specified path 
basename = os.path.basename(path) 

# Print the base name 
print(basename) 


# Path 
path = '/home/User/Documents/file.txt'

# Above specified path 
# will be splited into 
# (head, tail) pair as 
# ('/home/User/Documents', 'file.txt') 

# Get the base name 
# of the specified path 
basename = os.path.basename(path) 

# Print the basename name 
print(basename) 


# Path 
path = 'file.txt'


# The above specified path 
# will be splitted into 
# head and tail pair 
# as ('', 'file.txt') 
# so 'file.txt' will be printed 

# Get the base name 
# of the specified path 
basename = os.path.basename(path) 

# Print the base name 
print(basename) 

Output:

Documents
file.txt
file.txt

  • Enter your password to view comments.

Protected: EasiDesign Training amendments of 3rd party lib

Tags :

Category : Easi Design python

This content is password protected. To view it please enter your password below:


  • Enter your password to view comments.

Protected: python中那些双下划线开头得函数和变量

Tags :

Category : python

This content is password protected. To view it please enter your password below:


  • Enter your password to view comments.

Protected: GeoPandas: Lesson7 Aggregation with dissolve and Merging Data

Tags :

Category : Easi Design python

This content is password protected. To view it please enter your password below:


  • Enter your password to view comments.

Protected: GeoPandas: Lesson6 Set-Operations with Overlay

Tags :

Category : Easi Design python

This content is password protected. To view it please enter your password below:


  • Enter your password to view comments.

Protected: GeoPandas: Lesson5 Geometic Manipulations

This content is password protected. To view it please enter your password below:


  • Enter your password to view comments.

Protected: GeoPandas: Lesson4 Managing Projections

This content is password protected. To view it please enter your password below:


  • Enter your password to view comments.

Protected: GeoPandas: Lesson3 Mapping Tools

This content is password protected. To view it please enter your password below:


  • Enter your password to view comments.

Protected: GeoPandas: Lesson2 Reading and Writing Files and Indexing and Selecting Data

Category : python

This content is password protected. To view it please enter your password below:


  • Enter your password to view comments.

Protected: GeoPandas – Lesson 1 Data Structures

This content is password protected. To view it please enter your password below: