python测试程序_一个测试程序搞定Python3中的print

#!/usr/bin/python

# _*_ coding: UTF-8 _*_

#====================================

#Func: lian xi chang de

#date:

#programer:jjw

#====================================

print("let`s practice everything")

print("YOu\`d need to know \` bout escapes with \\ that do 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 requries an explanation

"""

print("-------------------------------")

print(poem)

print("-------------------------------")

five = 10 - 2 + 3 - 6

print(five)

print("This should be five %d"%five)

def secret_formula(started):

jelly_beans = started*300

jar = jelly_beans / 1000

crates = jar /100

return jelly_beans, jar, crates

start_piont = 10000

beans, jar, crates = secret_formula(start_piont)

print("With a starting piont of : %d" % start_piont)

print("We have %d beans, %d jar, %d crates ." % (beans, jar, crates))

start_piont = start_piont / 10

print("We can also do that in this way")

beans, jar, crates = secret_formula(start_piont)

print("We have %d beans, %d jar, %d crates ." % secret_formula(start_piont))

运行结果

D:\Python33\python.exe D:/work/first_project/func_exp2.py

let`s practice everything

YOu\`d need to know \` bout escapes with \ that do newlines and tabs.

-------------------------------

The lovely world

with logic so firmly planted

cannot discern

the needs of love

nor comprehend passion from intuition

and requries an explanation

-------------------------------

5

This should be five 5

With a starting piont of : 10000

We have 3000000 beans, 3000 jar, 30 crates .

We can also do that in this way

We have 300000 beans, 300 jar, 3 crates .

Process finished with exit code 0

阅读(1716) | 评论(0) | 转发(1) |

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值