python新手。需要帮助以了解代码

时间:2018-08-21 07:00:25

标签: python

你好,我刚接触python。如果有人可以帮助我理解这段代码,我们将非常高兴。

#!/usr/bin/python

import sys, getopt

def main(argv):
   inputfile = ''
   outputfile = ''
   try:
      opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="])
   except getopt.GetoptError:
      print 'test.py -i <inputfile> -o <outputfile>'
      sys.exit(2)
   for opt, arg in opts:
      if opt == '-h':
         print 'test.py -i <inputfile> -o <outputfile>'
         sys.exit()
      elif opt in ("-i", "--ifile"):
         inputfile = arg
      elif opt in ("-o", "--ofile"):
         outputfile = arg
   print 'Input file is "', inputfile
   print 'Output file is "', outputfile

if __name__ == "__main__":
   main(sys.argv[1:])

1 个答案:

答案 0 :(得分:0)

尽我所能,请在下面找到我的评论(for(const doc of querySnapshot) { let data = doc.data() if (data.age == 16) { break; } }

# comments