博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python day01
阅读量:6093 次
发布时间:2019-06-20

本文共 2386 字,大约阅读时间需要 7 分钟。

window->perperence里能够看到pydev
点击“Interpreter - python”->new->添加你的python安装目录下的python.exe
5.测试
new->other project->pydev->选择pydev project
创建工程"HelloPython"
创建"hello"包
在__init__.py里输入
  1. print 'Hello python'
 
执行程序
 
执行结果:
end
 
方式二:在线安装

首先需要去Eclipse官网下载:,Eclipse需要JDK支持,如果Eclipse无法正常运行,请到Java官网下载JDK安装:。

打开Eclipse,找到Help菜单栏,进入Install New Software…选项。

点击work with:输入框的旁边点击Add…,Name可以随便是什么,我输入的是PyDev,Location是http://pydev.org/updates。点击OK。

等待一下,便可以在选择栏里看到各个选项。

选择PyDev,然后一路Next,进入安装路径选择界面,使用默认设置,然后 Finish。Eclipse将下载 PyDev,可以从 Eclipse任务栏中看到下载的进度。PyDev安装好后,需要重启Eclipse。


配置PyDev:

PyDev安装好之后,需要配置解释器。在 Eclipse 菜单栏中,选择Window > Preferences > Pydev > Interpreter – Python,在此配置 Python。首先需要添加已安装的解释器。如果没有下载安装Python,请到官网下载2.x或者3.x版本:。

我使用的是Python3.x版本,Python安装在D:\Python32 路径下。单击 New,进入对话框。Interpreter Name可以随便命名,Interpreter Executable选择Python解释器python.exe。

点击OK后跳出一个有很多复选框的窗口,选择需要加入SYSTEM pythonpath的选项,点击Ok。

然后在Python Interpreters的窗口,再次点击OK,即完成了Python解释器的配置。

到此PyDev就已经完成了配置,可以使用Eclipse开始编写Python。


Hola World:

在 Eclipse 菜单栏中,选择File > New > Pydev > Project…,在窗口中选择PyDev Project,有三种项目可以创建,选择PyDev Project。

点击Next,输入项目名,选择相应的项目类型,以及所使用的Python语法版本和Python解释器。

创建成功后,进入透视图,右击src图标,选择New->Pydev Package,创建一个新的包。系统将自动生成__init__.py 文件,该文件不包含任何内容。再右键单击创建的包,选择 New->Pydev Module,创建你一个新的Python模块,单击Finish。

这样我们就可以开始创建第一个.py文件了。

 

标签:
the_world_is_flat = Trueif the_world_is_flat :    print("hello,baby")print("-----------Numbers")    print( (50 - 5*6) / 4)    print("-----------variable")   width =20height=5*1print(width*height);print('apple');print( 'Py' 'thon');prefix = 'Py'print( prefix + 'thon');text = ('Put several strings within parentheses ' 'to have them joined together.')print(text);word = 'Python'print(word[0]+word[-1]);# characters from position 0 (included) to 2 (excluded)print(word[0:2]);# py# character from the beginning to position 2 (excludedprint(word[:2]);# py# characters from position 4 (included) to the endprint(word[4:]);#on# characters from the second-last (included) to the endprint(word[-2:]);#on# the word only has 6 characters#print(word[42]);#string index out of range#arraylist = [1, 4, 9, 16, 25]print(list[0]+list[-1]) # slicing returns a new listprint (list[-3:]);  # the following slice returns a new (shallow) copy of the list:print(list[:]);#Lists also support operations like concatenation:print(list + [36, 49, 64, 81, 100]);

 

转载于:https://www.cnblogs.com/alamps/p/6471869.html

你可能感兴趣的文章
Qt多线程
查看>>
我的友情链接
查看>>
想说一点东西。。。。
查看>>
css知多少(8)——float上篇
查看>>
NLB网路负载均衡管理器详解
查看>>
水平添加滚动条
查看>>
PHP中”单例模式“实例讲解
查看>>
VM EBS R12迁移,启动APTier . AutoConfig错误
查看>>
atitit.细节决定成败的适合情形与缺点
查看>>
Mysql利用binlog恢复数据
查看>>
我的友情链接
查看>>
用yum安装mariadb
查看>>
一点IT"边缘化"的人的思考
查看>>
WPF 降低.net framework到4.0
查看>>
搭建一个通用的脚手架
查看>>
开年巨制!千人千面回放技术让你“看到”Flutter用户侧问题
查看>>
开源磁盘加密软件VeraCrypt教程
查看>>
本地vs云:大数据厮杀的最终幸存者会是谁?
查看>>
阿里云公共镜像、自定义镜像、共享镜像和镜像市场的区别 ...
查看>>
shadowtunnel v1.7 发布:新增上级负载均衡支持独立密码
查看>>