摘要: 1.第一步:创建一个项目 2.第二步:设置项目名称创建 3.第三步:新建一个文件右键单击刚建好的helloWord项目,选择New --> Python File 4.第四步:输入文件名 5.第五步:进入编写页面 6.第六步:输入code: print "Hello word!" 运行该程序 注:运 阅读全文
posted @ 2020-05-15 08:09 霜井 阅读(998) 评论(0) 推荐(0) 编辑
摘要: 1 #print("hello word!") 2 3 #数据类型 Number数字 4 print(type(1)) #<class 'int'> 5 print(type(-1)) #<class 'int'> 6 print(type(1.1))#<class 'float'> 7 print 阅读全文
posted @ 2020-05-15 07:11 霜井 阅读(205) 评论(0) 推荐(0) 编辑