--- title: 13.跳脫字元 tags: python基礎語法與應用, 筆記 --- # 13.跳脫字元 逃脫字元: - \n: 換行 - \t:TAB - \b:backspace a= "hello\npython" →hello python print(leb(a)) →12 (\n也算一個字) b= "hello\bpython" print(b) →hellpython print(b == "hellopython") →False print(len(b)) →12 # END
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up