Python在int中计数“4”

问题描述 投票:-2回答:1

我怎么能用python计算整数的4。

整数是3到10000.我想知道这个整数中4的频率是多少。

也许是这样的:计算4中3 ** 10000

python-3.x count
1个回答
1
投票

以下作品:

len(str(3**10000).split('4'))-1

或者如下所示:

str(3**10000).count('4')

都给495。

© www.soinside.com 2019 - 2024. All rights reserved.