我有一个python脚本(实际上是pyROOT脚本),它使用扫描命令myTree.Scan("totalEvents")
从一些小结中获取了一些信息。几乎有100多个文件,其中一些文件要求我按Enter键或q键(如果它们的列数超过一定数量,则继续)。
Type <CR> to continue or q to quit
有没有办法在python或bash脚本中自动执行回车键?
这是我的代码的摘要,仅包含1个根文件(此根文件就像一个包含多个根文件的文件夹-造成任何混乱的情况):
import ROOT as root
import os
afile = '<dir>/<filename>.root'
for f in os.listdir(afile):
tf = root.TFile(afile+'/'+f)
myTree = tf.Get("sumWeights")
myTree.Scan("totalEvents")