# Author:符攀飞
# Blog:feifeige.top
# Date : 2023/1/3 22:09
# File : day02.py
#转义字符
print('hello\nworld')# \n 换行
print('hello\tworld')# t占四个,hello 多占一个
print('helloooo\tworld')# t占四个
print('hello\rworld') # r指的是return word将hello进行了覆盖
print('hello\bworld')#b退一格,将o退了
print('http:\\\\www.feifeige.top')# \ 第二个是转义功能 已一个\展示
print('老师说:\"你好飞飞哥"') #单双引号都可以 前面加\
#原字符:不希望字符串中的转义字符起作用,就使用原字符 r or R
print(r'hello\nworld')
#注意事项:最后一个字符不能是反斜杠,两个\\可以
# 错误示范:print(r'hello\nworld\')
#两个\\可以
print(r'hello\nworld\\')
运行结果:
学习地址:https://www.bilibili.com/video/BV1wD4y1o7AS/?p=7&vd_source=5d440a6e04d528b35445d14a76a6890b
签到第二天,利用实习闲暇时间进行学习加油~
Python的优点:简单易学Python语言的优点第一个就是简单易学
简单到什么程度呢,举个例子来说,同样一个程序
使用C可能需要1000行代码,使用Java需要100行代码,而使用Python则只需要20行代码。
对于我这种菜鸟来说感觉学对方向了哈哈哈
标签:字符,nworld,Python,转义字符,理解,print,hello From: https://www.cnblogs.com/fupanfei/p/17023643.html