Python獲取當前檔名 讀檔案
import sys import os # 絕對路徑 print(__file__) print(sys.argv[0]) # 檔名 print(os.path.basename(__file__))
print(os.path.basename(sys.argv[0]))
if len(sys.argv) >= 2: name = sys.argv[1] name,txt = name.split('.') print(name,txt) with open(sys.argv[1],'r') as f: aa = f.read() content = aa.replace(' - ','-') with open('{}1.{}'.format(name,txt),'w') as ff: ff.write(content)
相關推薦
Python獲取當前檔名 讀檔案
import sys import os # 絕對路徑 print(__file__) print(sys.argv[0]) # 檔名 print(os.path.basename(__file__)) print(os.path.basename(sys.argv[0])) if l
Python獲取當前檔名分兩種方法:__file__、sys.argv[0]
Python獲取當前檔名可以通過__file__或者sys.argv[0],下面以test.py檔案為例. test.py: # -*- coding: utf-8 -*- # test.py import sys import os # 絕對路徑 print(__fi
python 獲取當前檔案的指定型別的檔名
import os def getFiles(): files = os.listdir(os.getcwd()) # os.getcwd() 獲取當前檔案的路徑 print(files) filesList = [] fo
python 獲取當前目錄下的檔案目錄和檔名 python 獲取當前目錄下的檔案目錄和檔名
python 獲取當前目錄下的檔案目錄和檔名 os模組下有兩個函式: os.walk() os.listdir() 1 # -*- coding: utf-8 -*- 2
C語言獲取當前編譯執行檔案(XXX.exe)檔名和目錄路徑
C語言獲取當前編譯執行檔案(XXX.exe)檔名和目錄路徑 vc2010編譯通過 #include<stdio.h> #include<string.h> #include<windows.h> #include<stdlib.h> int ma
Python獲取當前資料夾下的目錄和檔案
Python獲取當前資料夾下的目錄和檔案 # !/usr/bin/env python # -*-coding:utf-8-*- """ Copyright(c)2018 file: sambaCenter.py author: date
Python獲取當前檔案所在路徑
Python獲取當前正在執行的檔案所在路徑 #! /usr/bin/env python import os filepath = __file__ realpath = os.path.real
Cron 的在ubuntu 定時執行自己的程式&& Python獲取當前 指令碼檔案的路徑。
首先 crontab -e 在裡面加入自己的 要執行的語句。 上面的含義是 每隔15分鐘執行一次。。 後面的命令 我用的是 絕對路徑。 修改完 這裡之後 需要重啟 cron,重啟的命令是 sudo service cron restart crontab -l 可以打印出
Python獲取當前檔案路徑
#當前檔案的路徑 pwd = os.getcwd() #當前檔案的父路徑 father_path=os.path.abspath(os.path.dirname(pwd)+os.path.sep+".") #當前檔案的前兩級目錄 grader_father=os
【python系列】python 獲取當前位置所在的檔名、函式名和行號
import sys def get_cur_info(): print sys._getframe().f_code.co_filename #當前檔名,可以通過__file__獲得 print sys._getframe().f_code.co_name #當前函式名 pri
【python】python獲取當前日期前後N天或N月的日期
color ont mes form localtime col r+ arr nth 1 # -*- coding: utf-8 -*- 2 3 ‘‘‘獲取當前日期前後N天或N月的日期‘‘‘ 4 5 from time import strfti
Python獲取當前時間或者當前時間戳【轉】
想要 模塊 str 相關 月份 import pri 根據 min 取得時間相關的信息的話,要用到python time模塊,python time模塊裏面有很多非常好用的功能,你可以去官方文檔了解下,要取的當前時間的話,要取得當前時間的時間戳,時間戳好像是1970年到現在
python獲取當前時間和前一天時間
import 時間 ftime date time 格式化 %d str RF datetime ime模塊:import timetime.strftime(‘%Y%m%d‘) //time.strftime(‘%Y-%m-%d-%H:%M:%S‘) //獲取了當前時間
python 獲取當前目錄下的文件目錄和文件名
文件目錄 spl list tdi files 文件的 span 兩個 utf os模塊下有兩個函數: os.walk() os.listdir() 1 # -*- coding: utf-8 -*- 2 3 import os
【Python】-006 python獲取當前系統所有程序pid與名稱
【Python】-006 python獲取當前系統所有程序pid與名稱 【Python】-006 python獲取當前系統所有程序pid與名稱 1、實現 2、注意 1、實現
python獲取當前時間用GUI介面顯示
程式執行效果圖: 有兩種方法,執行效果一樣 方法一:利用configure()或config()方法實現文字變化 # 方法一:利用configure()或config()方法實現文字變化 import tkinter import time def gettime():
python 獲取當前資料夾路徑及父級目錄的幾種方法
獲取當前資料夾路徑及父級目錄: import os current_dir = os.path.abspath(os.path.dirname(__file__)) print(current_dir) #F:\project\pritice current_dir1 = os.path.dirna
Python獲取當前路徑
Refs: 假設py檔案路徑為 F:/SEG/myResearch/myProject_2/test.py Method 1: sys.argv[0] import sys print sys.argv[0]#獲得的是當前執行指令碼的位置(若在命令列執行的該命令
python 獲取當前函式的 函式名 sys._getframe().f_code.co_name
# -*- coding:utf-8 -*- import sys class test_class(): def hello(self): print(sys._getframe().f_code.co_name) def hello_wor
Python 獲取當前時間的前一個月,和前一個星期的時間列表
1.獲取前一個星期的時間列表 def dateRange(beginDate): """ 設計時間格式,也就是取出今天前七天的時間列表 :param beginDate: :return: """ yes_time = beginDate + da