Qt Creator 整合 python 解释器教程

3.1 新建 python文件 1

3.2 编写 python 代码 2

3.3 配置 python 解释器 2

3.4 执行 python file 3

 

1. 前言

Python是一种解释型、面向对象、动态数据类型的高级程序设计语言。python 有众多第三方库, 可以方便的快速方法各种应用。

 

Qt Creator 是用于编译 C++ 代码的 IDE

 

2.前提条件

安装 python2.7,安装 Qt Creator

3.步骤 3.1 新建 python文件

打开 Qt Creator -> 文件 -> 新建文件或项目 -> python -> python ->命名为 filetest_python

 

Qt Creator 整合 python 解释器教程

 

3.2 编写 python 代码

 

#!/usr/bin/env python # -*- coding: utf-8 -*- for i in range(1,10): print i

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpsspg.html