python 入门手册

python 入门手册

Introduction

这个手册是为了让学习者好好的重塑对于编程的认识,我们要来认识到怎么来在陌生的领域学习,学习的技巧开始,通过官方文档来学习

开端

利用IDE输出“Hello World”?

在编程环境里面,我们将“......”称为Strings(字符串)


In the interactive interpreter, the output string is enclosed in quotes and special characters are escaped with backslashes


对于编程来说,我们先要明白,很多时候我们并不是输入了就能输出

就如同你只输入“Hello World”,编辑器并不会输出“Hello World”


The print() function produces a more readable output, by omitting the enclosing quotes and by printing escaped and special characters:


在 python3 的环境下,

原文地址:https://www.cnblogs.com/zonghanli/p/12206455.html