摘要: 什么是编译器 摘自 Wiki Compiler 一段 A compiler is a computer program (or a set of programs) thattransforms source code written in a programming language (the s 阅读全文
posted @ 2022-01-18 15:30 懵懂者 阅读(599) 评论(0) 推荐(0)
摘要: python文件的第一行代码通常在脚本语言的第一行会看到:#!/usr/bin/env python3或#!/usr/bin/python3作用:首先要确定的一点是它不是注释。这两句话的目的都是指出你的python文件从哪调用何种解释器。区别:#!/usr/bin/python3:严格指定路径,告诉 阅读全文
posted @ 2022-01-18 14:54 懵懂者 阅读(2315) 评论(0) 推荐(1)