Python-Learn/PythonBasic/pythonStudy.md

55 lines
1.6 KiB
Markdown
Raw Normal View History

2022-03-19 11:08:53 +00:00
# Python学习笔记
2022-03-19 10:38:16 +00:00
## 一. 基本输入输出
1. print()
用print()在括号中加上字符串,就可以向屏幕上输出指定的文字。比如输出'hello, world',用代码实现如下:
> print('hello, world')
print()函数也可以接受多个字符串,用逗号“,”隔开,就可以连成一串输出:
2022-03-19 11:08:53 +00:00
```
print('The quick brown fox', 'jumps over', 'the lazy dog')
2022-03-19 10:38:16 +00:00
The quick brown fox jumps over the lazy dog
2022-03-19 11:08:53 +00:00
```
2022-03-19 10:38:16 +00:00
print()会依次打印每个字符串,遇到逗号“,”会输出一个空格.
2022-03-19 11:08:53 +00:00
当需要输出双引号或单引号时可交叉使用,比如
>print('This is my name:"Terry".')
当需要输出特殊字符的时候使用'\'加在前面,也可以前后加入使用'''来进行多行输出.例如:
```
print(''' The '\\n' means
go to
a new line.''')
>The '\n' means
go to
a new line.
```
2022-03-19 10:38:16 +00:00
2. input()
2022-03-19 11:08:53 +00:00
如果要让用户从电脑输入一些字符怎么办Python提供了一个input(),可以让用户输入字符串,并存放到一个变量里。比如输入用户的名字:
> name = input()
Michael
但是程序运行的时候没有任何提示信息告诉用户“嘿赶紧输入你的名字”这样显得很不友好。幸好input()可以让你显示一个字符串来提示用户,于是我们把代码改成:
```
name = input('please enter your name: ')
print('hello,', name)
```
## 二.基础知识
1. 数据类型和变量
1.1 整数
1.2 浮点数
1.3 字符串
1.4