logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

python tkinter 安装

python tkinter 安装brew install python-tkfrom tkinter import messageboxmessagebox.showinfo('alert', 'finished!')

#python
python tkinter 安装

python tkinter 安装brew install python-tkfrom tkinter import messageboxmessagebox.showinfo('alert', 'finished!')

#python
[ UICompatibilityInputViewController ] WillAppear 崩溃处理

问题:[ UICompatibilityInputViewController ] WillAppear解决检查使用了inputView命名, 跟系统命名冲突了.

python获取小数部分

a = 123.456b = math.modf(a)decimal_part = b[0] 

python request raw json请求

requests.post(url, json=param)

vue-cli 新建的项目去掉默认白边

添加:body{margin:0;padding:0;}

sublime设置python解析器

sublime设置python解析器#pythonTools -> Build System -> New Build System{"shell_cmd": "python -u \"$file\"","file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)","selector": "source.p...

python使用jupter

python使用jupter#pythonpip install jupyterpython -m ipykernel install --user --name=venvjupyter notebook

leetcode 94.二叉树的中序遍历(python)

leetcode 94.二叉树的中序遍历(python)给定一个二叉树,返回它的中序 遍历。示例:输入: [1,null,2,3]1\2/3输出: [1,3,2]进阶: 递归算法很简单,你可以通过迭代算法完成吗?方法1:递归## @lc app=leetcode.cn id=94 lang=python## [94] 二叉树的中序遍历## @lc code=start# Definition fo

#leetcode#python
    共 20 条
  • 1
  • 2
  • 请选择