Chinaunix首页 | 论坛 | 博客
  • 博客访问: 490319
  • 博文数量: 74
  • 博客积分: 750
  • 博客等级: 军士长
  • 技术积分: 1453
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-29 15:59
文章分类
文章存档

2014年(30)

2013年(8)

2012年(36)

分类: Python/Ruby

2014-02-25 21:21:49

#!/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











阅读(2371) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~