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
相關用法
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python getattr()用法及代碼示例
- Python os.getpgrp()用法及代碼示例
- Python os.fork()用法及代碼示例
- Python os.nice()用法及代碼示例
- Python os.getsid()用法及代碼示例
- Python os.setregid()用法及代碼示例
- Python os.pwrite()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.path.normcase() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。