message = "Every single day is the chance for a new beginning." print(message)
Every single day is the chance for a new beginning.
练习2-2:多条简单消息 将一条消息赋给变量,并将其打印出来;再将变量的值修改为一条新消息,并将其打印出来。
message = "Every single day is the chance for a new beginning." print(message) message = "Fate draws us back together." print(message)
Every single day is the chance for a new beginning.
Fate draws us back together.
练习2-3:个性化消息 用变量表示一个人的名字,并向其显示一 条消息。显示的消息应非常简单,下面是一个例子。
Hello Eric, would you like to learn some Python today?
name = "Lufei" print(f"Hello {name},would you like to learn some Python today?")
Hello Lufei,would you like to learn some Python today?
练习2-4:调整名字的大小写 用变量表示一个人的名字,再以小 写、大写和首字母大写的方式显示这个人名。
name = "Lufei" #小写 print(name.lower()) #大写 print(name.upper()) #首字母大写 print(name.title())
lufei
LUFEI
Lufei
练习2-5:名言 找一句你钦佩的名人说的名言,将其姓名和名言打印出来。输出应类似于下面这样(包括引号)。
Albert Einstein once said, “A person who never made a mistake never tried anything new.”
name = "Napoleon" print(f"{name} once said,is the true wisdom fortitude ambition.")
Napoleon once said,is the true wisdom fortitude ambition.
练习2-6:名言2 重复练习2-5,但用变量famous_person 表示名 人的姓名,再创建要显示的消息并将其赋给变量message ,然后打印这条消息。
famous_person = "Napoleon" message = "is the true wisdom fortitude ambition" print(f"{famous_person} once said,{message}.")
Napoleon once said,is the true wisdom fortitude ambition.
练习2-7:剔除人名中的空白 用变量表示一个人的名字,并在其 开头和末尾都包含一些空白字符。务必至少使用字符组合"t" 和"n" 各一次。打印这个人名,显示其开头和末尾的空白。然后,分别使用剔除函 数lstrip() 、rstrip() 和strip() 对人名进行处理,并将结果打印出来。
name = " Lisi " print(name) print('t' + name.strip() + "nt" + name.lstrip() + "nt" + name.rstrip())
Lisi
Lisi
Lisi
Lisi
练习2-8:数字8 编写四个表达式,分别使用加法、减法、乘法和 除法运算,但结果都是数字8。为使用函数调用print() 来显示结 果,务必将这些表达式用圆括号括起来。
print(2 + 6) print(10 - 2) print(2 * 4) print(int(16 /2))
8
8
8
8
练习2-9:最喜欢的数 用一个变量来表示你最喜欢的数,再使用 这个变量创建一条消息,指出你最喜欢的数是什么,然后将这条消息打印出来。
num = 8 message = f"My favorite number is {num}" print(message)
My favorite number is 8
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)