Python入门基础知识语法
正在学习Python的道路上,无论学习什么知识和技能,基础知识一定是非常重要的,从今天开始分享我的一些学习经验和知识,希望与各位共勉,有什么问题希望大家不吝赐教(* ̄︶ ̄)
在这里我也不介绍Python,相信学习它的人也一定有所了解,我们直接步入正题
- print函数
print函数在Python中的可以输出整数(int)、浮点数(float)、字符串(str)、含有运算符的表达式、还可以将数据输到文件中,详情见下述代码:
# print可以直接输出整数、浮点数类型
print(519)
print(81.5)
# print可以输出字符串 字符串需要带引号,否则会报错
print('helloworld')
print("helloworld")
# print可以输出含有运算符的表达式
print(2 + 1)
# print可以将数据输出到文件中 注意点:①所指定的盘符需要存在; ②使用file=xxx的形式,不然数据写不了
fp = open('E:/text.txt', 'a+') # 输出到E盘中的text,’a+‘表示如果没有这个文件就会创新建,存在就会在这个文件内容的后面继续追加
print('helloworld', file=fp) # 要输出helloworld,输出到fp
fp.close()
# 不进行换行输出(输出内容在一行当中) 字符串中间中英文逗号分隔
print('hello', 'world', 'python')
运行结果如下:
E:\Python\python.exe E:/py/基础语法/函数/print函数.py
519
81.5
helloworld
helloworld
3
hello world python
Process finished with exit code 0
- 转义字符
转义字符就是: 反斜杠(\)+需要实现转义功能的首字母,
当字符串中出现反斜杠、单引号、双引号等有特殊用途的字符时,必须使用反斜杠来对这些字符进行转义;字符串中包含回车、换行、制表符、退格需要表示时也需要使用转义字符,具体见下述代码:
# 转义字符
print('hello\nworld') # \ +转移功能的首字母 n-->newline的首字母表示换行
print('hello\tworld') # \t 一个tab键的字符
print('helloooo\tworld') # \t 是否重开一个制表位取决于前面的是否占满了一个制表位
print('hello\rworld') # r是return 回车 world将hello进行了覆盖
print('hello\bworld') # \b是退一个格,所以hello的o没了
print('http:\\\\www.baidu.com') # 需要输出\需要输入两个\\,因为其中一个是转义字符
''' \' \" 的结果是输出单引号(')和双引号(“) 在其前面加上了\相当于使其不再是字符串的边界,而是字符串中需要输出的内容 例子如下 '''
print('老师说:\'大家好。\'')
print('老师说:\"大家好。\"')
运行结果如下:
E:\Python\python.exe E:/py/基础语法/else/转义字符.py
hello
world
hello world
helloooo world
world
hellworld
http:\\www.baidu.com
老师说:'大家好。'
老师说:"大家好。"
Process finished with exit code 0
- 原字符
原字符就是希望字符串中的转义字符不起作用,具体见下述代码:
print(r'hello\nworld')
print(R'hello\nworld')
# 最后一个字符不能是反斜杠\ 如下
# print(r'hello\nworld\')
print(r'hello\nworld\\')
运行结果如下:
E:\Python\python.exe E:/py/基础语法/else/转义字符.py
hello\nworld
hello\nworld
hello\nworld\\
Process finished with exit code 0
第一次写博客,排版不太美观,望见谅,以后慢慢学习和改进,谢谢拔冗观看、评论、收藏、点赞的同学和前辈。