四分历python实现
根据一个新加坡人的c代码改写成python代码
''' 四分历''' #
zq = 0
month = 0 def main():
global month
year = 1
rb_year = 0
moon = 0 # number of new moon since beginning of ru bu year.
tmonth = 0
continues = False while year != 0:
year = int(input("\nPlease Enter a year to do computation (range:85~236, 0 to exit):")) if year == 0:
return
if year < 85 or year > 236:
print("\nCalculation of Si Fen Li doesn't apply to your input value.")
input("\nPress Enter to continue.")
#getch(continues);
continue rb_year = (year + 9281) % 76
tmonth = 14 + Leap_y(rb_year) print("月\t朔\t望\t长度\t中气\t时间\t时间\t时间")
print("- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -") month = 11
#zq = 0
for moon in range(1, tmonth + 1):
if moon % 8 == 0:
#print("\n")
pass
print_s(rb_year, moon)
month += 1
if month > 12:
month = 1 input("\nPress Enter to continue.") # 润年
def Leap_y( rbyear):
isLeap = 0
if ((rbyear - 1) * 235 ) % 19 >= 12:
isLeap = 1
return isLeap # 润月
def Leap_m(rbyear, month):
isLeap = 0
completed_month = (rbyear - 1) * (235.0/19.0) + (month - 1)
acd_first = (completed_month * (29.0+499.0/940.0) )
acd_last = ((completed_month + 1.0) * (29.0+499.0/940.0) )
qi_first = int(acd_first)/(30.0+14.0/32.0)
qi_last = int(acd_last) / (30.0+14.0/32.0) if qi_first - int(qi_first) != 0:
if int(qi_first) == int(qi_last) or qi_last == int(qi_last):
isLeap = 1 return isLeap # 打印结果
def print_s(rbyear, moon):
global zq
global month
name_s = acd_shuo(rbyear, moon)
name_w = acd_wang(rbyear, moon)
time_s = ( acd_shuo(rbyear, moon) - float(name_s) ) * 24.0
time_w = ( acd_wang(rbyear, moon) - float(name_w) ) * 24.0
length = int(acd_shuo(rbyear, moon + 1)) - name_s if Leap_m(rbyear, moon) == 0: #if is not a leap month.
zq += 1
name_q = acd_qi(rbyear, zq);
time_q = ( acd_qi(rbyear, zq) - (float)(name_q) ) * 24.0
print("{}\t1\t{:.1f}\t{:.3f}\t{:.1f}\t{:.3f}\t{:.3f}\t{:.1f}".format(month, time_s, name_w - name_s + 1, time_w, length, name_q - name_s + 1, time_q))
else:
month -= 1
print("{}(Leap)\t1\t{:.1f}\t{:.3f}\t{:.1f}\t{:.3f}".format(month, time_s, name_w - name_s + 1, time_w, length)) # 朔
def acd_shuo(rbyear, moon):
completed_month = ((rbyear - 1) * 235 / 19) + moon - 1
return completed_month * (29.0+499.0/940.0) # 望
def acd_wang(rbyear, moon):
completed_month = ((rbyear - 1) * 235 / 19) + moon - 1
return (completed_month + 0.5) * (29.0+499.0/940.0) # 气
def acd_qi(rbyear, qi):
completed_qi = ((rbyear - 1) * 12) + qi - 1
return completed_qi * (30.0+14.0/32.0) if __name__ == '__main__':
main()
四分历python实现的更多相关文章
- Python 历遍目录
Automate the Boring Stuff 学习笔记 01 使用 os 模块的 walk() 函数可以实现历遍目录的操作,该函数接收一个绝对路径字符串作为必选参数,返回三个参数: 当前目录—— ...
- python笔记4-遍历文件夹目录os.walk()
前言 如何遍历查找出某个文件夹内所有的子文件呢?并且找出某个后缀的所有文件 walk功能简介 1.os.walk() 方法用于通过在目录树种游走输出在目录中的文件名,向上或者向下. 2.walk()方 ...
- python学习历程之split()方法获取cmd mysql 结果集
if __name__=='__main__': FServerId = raw_input("Please input source id:") GetFileKey(FServ ...
- 使用Python进行描述性统计
目录 1 描述性统计是什么?2 使用NumPy和SciPy进行数值分析 2.1 基本概念 2.2 中心位置(均值.中位数.众数) 2.3 发散程度(极差,方差.标准差.变异系数) 2.4 偏差程度(z ...
- python与ruby的差别
1.引用文件差别 Ruby:同一目录下的文件,如/usr/local/ruby/foo.rb与/usr/local/ruby/bar.rb两个文件.如果直接在foo.rb中 require 'bar' ...
- python学习笔记:Day02
一.列表(list) 1.定义一个列表 name=["tom","jerry","12","13","lose ...
- 【转】你真的理解Python中MRO算法吗?
你真的理解Python中MRO算法吗? MRO(Method Resolution Order):方法解析顺序. Python语言包含了很多优秀的特性,其中多重继承就是其中之一,但是多重继承会引发很多 ...
- Python全栈之路---运算符与基本的数据结构
运算符 一.算术运算符: 练习: + 加法 两个对象相加 1 + 2得到3:'a' + 'b'得到'ab'. - 减法 一个数减去另一个数或者是负数 5 - 3得到2:-2得到一个负数 * 乘法 两个 ...
- Python简史
Python简史 作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明.谢谢! Python是我喜欢的语言,简洁,优美,容易使用.前两天,我很激 ...
随机推荐
- 网站源IP暴露使用高防之后还行不行如何解决?
如题:使用高防后源站IP暴露的解决办法 在购买高防IP后,如果还存在攻击绕过高防直接打到源站IP的情况,就需要更换下源站IP了.但在这之前,请务必排查确认没有其他可能暴露源站IP的因素后,再去更换源站 ...
- Oracle EBS 请求添加SQL语句
- C#自定义控件的创建
1.创建自定义控件 选择[经典桌面]——[窗体控件库] 2.添加控件,组合成一个新的控件 自定义控件功能:打开一张图片,将图片展示在pictureBox控件中,并将图片的名称.大小.尺寸显示出来 控件 ...
- JavaScript运行机制的学习
今天在偶然在网上看到一个JavaScript的面试题,尝试着看了一下,很正常的就做错了,然后给我们前端做,哈哈,他居然也顺理成章做的错了,代码大概是这样的 /*1 下面代码会怎样执行?执行结果是什么* ...
- inclusion_tag 界面的嵌套 和渲染
后端的html渲染到前端: 如果后端直接定义的是html标签,传到前端的时候因为浏览器的安全机制就会直接渲染成字符串如果想要渲染成需要的标签,就需要在后端用make_save()进行包裹,或者直接在前 ...
- 记Git报错-Everything up-to-date
文:铁乐与猫 今天git push 到github远程仓库的时候,出现报错"Everything up-to-date",严格来说也不算报错,它只是在告诉你,提交区所有的东西都是最 ...
- idea+maven+spring+cxf创建webservice应用(二)生成客户端程序
idea+maven+spring+cxf创建webservice应用(二)生成客户端程序,以上一篇为基础"idea+maven+spring+cxf创建webservice应用" ...
- HTTP 错误 404.3 - Not Found的问题(WCF)
模块 StaticFileModule 通知 ExecuteRequestHandler 处理程序 StaticFile 错误代码 0x80070032 请求的 URL http://10.101.3 ...
- npm install --save 和 --save-dev的区别
--save 会把依赖包名称添加到 package.json 文件 "dependencies" 键下--save-dev 则添加到 package.json 文件 "d ...
- js数组去重的方法(转)
JS数组去重的几种常见方法 一.简单的去重方法 // 最简单数组去重法 /* * 新建一新数组,遍历传入数组,值不在新数组就push进该新数组中 * IE8以下不支持数组的indexOf方法 * */ ...