码迷,mamicode.com
首页 > 编程语言 > 详细

python代码中判断版本

时间:2018-07-07 01:07:08      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:span   代码   pes   lse   版本   char   byte   inf   make   

在python代码中判断python版本: 

if sys.version_info < (3, 0):
  lib.make_flows.argtypes = [c_char_p, c_char_p, c_int, c_int, c_int]
  lib.make_flows(avi, newpath, 0, 0, 10)
else:
   in_path = bytes(avi, utf8)
   out_path = bytes(newpath, utf8)
   lib.make_flows(in_path, out_path, 0, 0, 10)

 

python代码中判断版本

标签:span   代码   pes   lse   版本   char   byte   inf   make   

原文地址:https://www.cnblogs.com/ocean1100/p/9276024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!