Board logo

标题: [原创代码] python解无忧公主数学题107.py [打印本页]

作者: codegay    时间: 2016-3-11 16:04     标题: python解无忧公主数学题107.py

python解无忧公主数学题107.py
  1. """
  2. python解无忧公主数学题107.py
  3. http://mp.weixin.qq.com/s?__biz=MzI5ODEwMDQyNw==&mid=402343371&idx=1&sn=0de458a3653a0070ba3912bda7d01db9&scene=25#wechat_redirect
  4. 2016年3月9日 12:49:55 codegay
  5. """
  6. def ff1():
  7.     #用程序自动把index对应位置的数字切出来。
  8.     exp=990*991*992*993
  9.     s="966428A91B40"
  10.     #问AB=多少
  11.     ab=str(exp)[s.index("A")]+str(exp)[s.index("B")]
  12.     print("方法1: AB =",ab)
  13.     #2016年3月9日 13:03:02
  14. ff1()
  15. def ff2(exp=996*997*998*999,s="9900x4yz0024"):
  16.     #2016年3月11日 13:32:03
  17.     #本函数目的设计成可以用来解同类题型,输入一个表达式,算出其结果部分被字母打码的值。
  18.     abc=''.join([r for r in s if r.isalpha()])
  19.     v=''.join([str(exp)[s.index(r)] for r in s if r.isalpha()])
  20.     print("方法2结果:",abc,"=",v)
  21.     #2016年3月11日 14:11:58
  22. ff2()
  23.    
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2