print("Let's practice everthing.")
#打印 ' \ 换行 制表符
print('You\'d need to know \'bout escapes with \\ that do \n newlines and \t tabs.')
#变量
poem = """
\tThe lovely world
with logic so firmly planted
cannot discern \n the needs of love
nor comprehend passion from intuition
and requires an explanation
\n\t\twhere there is none.
"""
print("---------------")
print(poem)
print("---------------")
#变量 运算
five = 10 -2 + 3 - 6
#打印 格式化字符串
print("This should be five: %s" % five)
#命名函数 变量 运算
def secret_formula(started):
jelly_beans = started * 500
jars = jelly_beans / 1000
crates = jars / 100
return jelly_beans, jars, crates
#赋值
start_point = 10000
#解包
beans, jars, crates = secret_formula(start_point)
#格式化整数
print("With a starting point of: %d" % start_point)
print("We'd have %d beans, %d jars, amd %d crates." % (beans, jars, crates))
#赋值
start_point = start_point / 10
print("We can also do that this way:")
print("We'd have %d beans, %d jars, and %d crates." % secret_formula(start_point))
打印结果


本文通过一个具体的Python脚本示例,展示了如何使用转义字符、变量、函数和格式化字符串等基本概念。从打印带有特殊字符的字符串到定义并调用函数进行复杂的数学运算,全面覆盖了Python初学者所需掌握的核心技能。

2267

被折叠的 条评论
为什么被折叠?



