Python
woSHIxiaobai2
这个作者很懒,什么都没留下…
展开
-
python2 与 python3 语法区别
快乐糖果屋python2 与 python3 语法区别python2 与 python3 语法区别概述#原稿地址:使用 2to3 将代码移植到 Python 3几乎所有的Python 2程序都需要一些修改才能正常地运行在Python 3的环境下。为了简化这个转换过程,Python 3自带了一个叫做2to3的实用脚本(Utility Script),这个脚本会将你的Python ...转载 2019-02-12 13:39:54 · 274 阅读 · 0 评论 -
vs2017给命令行添加参数
注:当前环境为编辑python程序时的环境vs2017 argv传参数右键要添加命令行参数的工程->属性->调试->脚本参数参数间用空格隔开原创 2019-03-08 22:00:47 · 3232 阅读 · 0 评论 -
vs2017 python环境 argv用法遇到的问题
#ex.13from sys import argvscript,first,second,third = argv #将argv“解包(unpack)”print("The script is called:",script)print("Your first vatiable is:",first)print("Your second variable is:",second...原创 2019-03-08 22:44:27 · 395 阅读 · 0 评论 -
vs2017安装第三方资源包 python环境
自己用这个方法安装过pygame和paddlepaddle,亲适可以工具-->Python-->Python环境然后点击“概述”,选中“包(PyPI)”,然后再搜索框中输入想要安装的第三方包,点击对应选项进行安装 再选中“概述”,点击“打开交互窗口”,等待后,交互窗口会提示安装完成的信息附:Visual Studio文档 https:/...原创 2019-04-04 20:38:42 · 1912 阅读 · 0 评论 -
趣味代码 python画小猪佩奇
# -*- coding:utf-8 -*-from turtle import*def nose(x,y):#鼻子 penup()#提起笔 goto(x,y)#定位 pendown()#落笔,开始画 setheading(-30)#将乌龟的方向设置为to_angle/为数字(0-东、90-北、180-西、270-南) begin_fill()#准...原创 2019-04-04 20:53:32 · 1196 阅读 · 1 评论