學習Python堅硬方式,鍛鍊6.2-4:其中一個字符串在字符串中把如何找到字符串放在字符串中的位置?
x = "There are %d types of people." 10
binary = "binary"
do_not = "don't"
y = "Those who know %s and those who %s." % (binary, do_not)
print x
print y
print "I said: %r." % x
print "I also said: '%s'." % y
hilarious = False
joke_evaluation = "Isn't that joke so funny?! %r"
print" joke_evaluation % hilarious
w = "This is the left side of..."
e = "a string with a right side."
print w + e
2.Find所有的地方。有四個地方。 3.你確定只有四個地方?你怎麼知道的?也許我喜歡說謊。 4.解釋爲什麼用+增加兩個字符串w和e使得字符串更長。
我不知道他是不是在說謊,因爲對我來說它看起來有6次。那麼有誰能告訴我一個字符串放在一個字符串中以及在哪裏?
另外,如果它沒有很多麻煩,你能解釋爲什麼兩個字符串+加一個更長的字符串。
您的第一行包含錯字。我不是在說謊。 –
另外這行:'print「joke_evaluation%搞笑' –