python课程学习
开启python学习之旅 这是我的一篇博客文章,写作发布我的python学习心得。 🚀python 为什么选择 python?  简单易学:语法简单,学习成本低 print("Hello, world!")  在初接触code,公认的python和java比较火,简单 于是打算从python英文单词蟒蛇着手。 功能强大:丰富的标准库和第三方库 python确实简单 对比c语言 python的代码简洁清晰 可移植性强:跨平台,可在 Windows、Linux、macOS 等平台运行 python的用途据说很广泛 比如 爬虫 数据分析 机器学习 自动化运维 等等 可扩展性强:可以通过 C/C++ 等语言编写扩展模块 从python着手 学习python 可以学习到很多其他语言的知识 比如 面向对象 函数式编程 等等object funcion 基础的计算机语言是相通的,比如运算符±*/ == != > < >= <=比较运算符 -= += *= /= 等 or not and。break 和continue, while for循环 比如if elif el...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start Create a new post $ hexo new "My New Post" More info: Writing Run server $ hexo server More info: Server Generate static files $ hexo generate More info: Generating Deploy to remote sites $ hexo deploy More info: Deployment 
我的第一篇博客文章
欢迎来到我的博客! 这是我的第一篇博客文章,使用 Hexo 和 Matery 主题搭建。在这里,我将分享技术学习心得、生活感悟和各种有趣的内容。 🚀 Hexo 博客搭建经历 为什么选择 Hexo?  快速简单:基于 Node.js,生成静态页面速度极快 主题丰富:有大量美观的主题可供选择 Markdown支持:专注于内容写作,无需关心样式  搭建过程中遇到的挑战  环境配置# 安装 Hexo yard install -g hexo-cli  # 初始化博客 hexo init myblog cd myblog  # 安装依赖 yard install   
