duanhe4155 2009-10-31 20:37
浏览 80
已采纳

将Python代码转换为PHP

What is the following Python code in PHP?

import sys

li = range(1,777);

def countFigure(li, n):
        m = str(n);
        return str(li).count(m);

# counting figures
for substr in range(1,10):
        print substr, " ", countFigure(li, substr);

Wanted output for 777

1   258
2   258
3   258
4   258
5   258
6   258
7   231
8   147
9   147
  • 写回答

1条回答 默认 最新

  • doumanni3501 2009-10-31 20:45
    关注

    It's been a while since I did any Python but I think this should do it. If you could clarify what str(li) looks like it would help.

    <?php
    
    $li = implode('', range(1, 776));
    
    function countFigure($li, $n)
    {
        return substr_count($li, $n);
    }
    
    // counting figures
    
    foreach (range(1, 9) as $substr)
        echo $substr, " ", countFigure($li, $substr), "
    ";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画