当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.path.normcase()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是Python中OS模块的子模块,用于通用路径名操作。

os.path.normcase()Python中的方法用于规范指定路径名的大小写。在Windows上,此方法将指定路径中的所有字符都转换为小写,并将正斜杠('/')转换为反斜杠('\')。在Windows以外的其他操作系统上,此方法返回的指定路径不变。

用法: os.path.normcase(path)

参数:
path:代表文件系统路径的path-like对象。

返回类型:此方法返回一个字符串值,该字符串值表示指定路径中的规范化大小写。

代码1:用于os.path.normcase()方法(在Windows上)

# Python program to explain os.path.normcase() method  
    
# importing os.path module  
import os.path 
  
# Path 
path = r'C:\User\admin\Documents'
  
  
# Normalize the case of   
# characters in the specified path 
norm_path = os.path.normcase(path) 
  
# Print the normalized path   
print(norm_path) 
  
# Path 
path = '/hoMe/UseR/'
  
  
# Normalize the case of   
# characters in the specified path 
norm_path = os.path.normcase(path) 
  
# Print the normalized path   
print(norm_path) 
  
# Path 
path = r'C:\Users/Desktop'
  
# Normalize the case of   
# characters in the specified path 
norm_path = os.path.normcase(path) 
  
# Print the normalized path   
print(norm_path)
输出:
c:\\user\\admin\\documents
\\home\\user
c:\\users\\desktop

代码2:用于os.path.normcase()方法(在Windows以外的操作系统上)

# Python program to explain os.path.normcase() method  
    
# importing os.path module  
import os.path 
  
# Path 
path = '/home/UseR/Documents'
  
  
# Normalize the case of   
# characters in the specified path 
norm_path = os.path.normcase(path) 
  
# Print the normalized path   
print(norm_path) 
  
# Path 
path = '/hoMe/UseR/'
  
  
# Normalize the case of   
# characters in the specified path 
norm_path = os.path.normcase(path) 
  
# Print the normalized path   
print(norm_path) 
  
# os.path.norcase() method wil return 
# the specified path as it as 
# on operating systems  
# other than Windows
输出:
/home/UseR/Documents
/hoMe/UseR/

参考: https://docs.python.org/3/library/os.path.html



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.path.normcase() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。