《Beginning Python From Novice to Professional》学习笔记一:String

1.两个字符串放在一起会自动合并
"Let's say " '"Hello, world!"' --->'Let/'s say "Hello, world!"'
但是两个字符串变量放在一起中间要加“+”号才会合并

2.str与repr
str会将变量转化成某种用户能够理解的String方式,如
print str(10000L) --->10000
#str(object) -- Converts a value to a string
repr会将变量转化为Python的合法变量
print repr(10000L) --->10000L
另外repr(x)='x'
#repr(object) -- Returns a string representation of a value

3.input与raw_input
name = input("What is your name? ")回车继续
What is your name? Gumby
会出错,因为input会假设你输入的是有效的Python变量,而此处Gumby未定义。改为
What is your name? 'Gumby'则成功
#input(prompt) -- Gets input from the user
name = raw_input("What is your name? ")回车继续
What is your name? Gumby 则不会报错,因为raw_input会认为输入的均为String
#raw_input(prompt) -- Gets input from the user, as a string

4.'''与r与u
'''
长字符串 '''       中间可以分行,可以任意用'、"
r前缀为Raw String,     'Hello /nthyU!'会分行,而r'Hello /nthyU!'就忠实于WhatYouSeeIsWhatYouGet,
u前缀为Unicode String,每个字符用16Bit。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值