Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6087088
  • 博文数量: 2759
  • 博客积分: 1021
  • 博客等级: 中士
  • 技术积分: 4091
  • 用 户 组: 普通用户
  • 注册时间: 2012-03-11 14:14
文章分类

全部博文(2759)

文章存档

2019年(1)

2017年(84)

2016年(196)

2015年(204)

2014年(636)

2013年(1176)

2012年(463)

分类: Python/Ruby

2014-03-03 08:59:27

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











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