仗剑走天涯

Just Do It!
随笔 - 61, 文章 - 0, 评论 - 0, 阅读 - 69865
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

09 2020 档案

摘要:1.0 Python常用的符号 符号 实例 备注 单行注释 # # 我是注释,可以在里写一些功能说明之类的哦 以#开头,#右边的所有东西当做说明,而不是真正要执行的程序,起辅助说明作用 多行注释 ''' ''' '''我是多行注释,可以写很多很多行的功能说明哈哈哈。。。''' 普通输出 print 阅读全文

posted @ 2020-09-13 17:21 三颗油 阅读(168) 评论(0) 推荐(0) 编辑

摘要:Python诞生和发展 Python 特点 Python缺点 典型应用 Python环境 下载Pythonhttps://www.python.org/downloads/ 安装Python 配置环境变量 将Python的安装路径,及其Script文件夹的路径添加到Path内 这是我的安装路径 C: 阅读全文

posted @ 2020-09-13 15:44 三颗油 阅读(254) 评论(0) 推荐(0) 编辑

摘要:https://www.jetbrains.com/pycharm/download/#section=windows Python文件模板配置 File → Setting → Editer #-*- codeing = utf-8 -*- #@Time : DATE{TIME} #@A 阅读全文

posted @ 2020-09-13 14:41 三颗油 阅读(247) 评论(0) 推荐(0) 编辑

摘要:传送门 http://www.freecodecamp.com/ Here's why you should join our open source community right now: You'll get help in real time from our community chat 阅读全文

posted @ 2020-09-13 13:43 三颗油 阅读(956) 评论(0) 推荐(0) 编辑

摘要:https://blog.51cto.com/8304941/1558288 阅读全文

posted @ 2020-09-13 13:32 三颗油 阅读(196) 评论(0) 推荐(0) 编辑

摘要:https://blog.51cto.com/8304941/1555286 阅读全文

posted @ 2020-09-13 13:31 三颗油 阅读(171) 评论(0) 推荐(0) 编辑

摘要:https://blog.51cto.com/8304941/1553434 阅读全文

posted @ 2020-09-13 13:30 三颗油 阅读(229) 评论(0) 推荐(0) 编辑

摘要:https://blog.51cto.com/8304941/1552929 阅读全文

posted @ 2020-09-13 13:29 三颗油 阅读(199) 评论(0) 推荐(0) 编辑

摘要:https://blog.51cto.com/8304941/1551958 阅读全文

posted @ 2020-09-13 13:27 三颗油 阅读(162) 评论(0) 推荐(0) 编辑

摘要:https://blog.51cto.com/8304941/1551852 阅读全文

posted @ 2020-09-13 13:26 三颗油 阅读(188) 评论(0) 推荐(0) 编辑

摘要:https://blog.51cto.com/8304941/1568622 阅读全文

posted @ 2020-09-13 13:25 三颗油 阅读(169) 评论(0) 推荐(0) 编辑

摘要:https://blog.51cto.com/8304941/1555162 阅读全文

posted @ 2020-09-13 13:19 三颗油 阅读(582) 评论(0) 推荐(0) 编辑

摘要:IntonationMany people from different countries have improper intonation because their teacher had improper intonation. In many situations, being monot 阅读全文

posted @ 2020-09-13 11:19 三颗油 阅读(290) 评论(0) 推荐(0) 编辑

摘要:In order to obtain English fluency for ESL students, studying grammar can slow your progress down significantly. Basic grammar is a necessity, but foc 阅读全文

posted @ 2020-09-13 11:11 三颗油 阅读(200) 评论(0) 推荐(0) 编辑

摘要:1. Don't study grammar too muchThis rule might sound strange to many ESL students, but it is one of the most important rules. If you want to pass exam 阅读全文

posted @ 2020-09-13 11:08 三颗油 阅读(387) 评论(0) 推荐(0) 编辑

摘要:What are collocations in English? Collocation is words that are used regularly with a specific word. For example, three collocation words for the word 阅读全文

posted @ 2020-09-13 10:51 三颗油 阅读(261) 评论(0) 推荐(0) 编辑

摘要:Learn English to Use it!You will become an expert English speaker!Many people study English for many years. Even after years of studying, they go to a 阅读全文

posted @ 2020-09-13 10:38 三颗油 阅读(569) 评论(0) 推荐(0) 编辑

摘要:DOM(Document Object Model), 当页面加载时浏览器会创建一个文档对象模型 文档结构document 根元素(root) <html> <head> --<title> -- text <body> <a> attribute:href, text <h1> <input> D 阅读全文

posted @ 2020-09-13 10:12 三颗油 阅读(141) 评论(0) 推荐(0) 编辑

摘要:首先,我们编程都是用的高级语言(写汇编和机器语言的大牛们除外),计算机不能直接理解高级语言,只能理解和运行机器语言,所以必须要把高级语言翻译成机器语言,计算机才能运行高级语言所编写的程序。 说到翻译,其实翻译的方式有两种,一个是编译,一个是解释。两种方式只是翻译的时间不同。 用编译型语言写的程序执行 阅读全文

posted @ 2020-09-13 10:08 三颗油 阅读(195) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示