当前位置: 首页 > news >正文

seo公司哪家便宜seo优化自动点击软件

seo公司哪家便宜,seo优化自动点击软件,div css网站实例,wordpress通知一、实验目的 使用Python解决简单问题 二、实验要求 自主编写并运行代码,按照模板要求撰写实验报告 三、实验步骤 本次实验共有5题: 有四个数字:1、2、3、4,能组成多少个互不相同且无重复数字的三位数?各是多少&…

一、实验目的

使用Python解决简单问题

二、实验要求

自主编写并运行代码,按照模板要求撰写实验报告

三、实验步骤

本次实验共有5题:

  1. 有四个数字:1、2、3、4,能组成多少个互不相同且无重复数字的三位数?各是多少?四个数字是2、3、7、9呢?
  2. 判断1000-2000之间有多少个素数,并输出所有素数.
  3. 打印出所有的"四叶玫瑰数",所谓"四叶玫瑰数"是指一个四位数,其各位数字四次方和等于该数本身。
  4. 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符输出的数并分别统计每一种类型的个数。
  5. 打印九九乘法表。

四、实验结果

T1

T1-1

import itertoolscount = 0
for arr in itertools.permutations('1234', 3):# print(arr)print(int(arr[0]) * 100 + int(arr[1]) * 10 + int(arr[2]))count = count + 1print('共有' + str(count) + '个组合')

T1-2

import itertoolscount = 0
for arr in itertools.permutations('2379', 3):# print(arr)print(int(arr[0]) * 100 + int(arr[1]) * 10 + int(arr[2]))count = count + 1print('共有' + str(count) + '个组合')

T2

import mathcount = 0
res = []def check(x):if x <= 1:return Falsefor flag in range(2, int(math.sqrt(x) + 1)):if x % flag == 0:return Falsereturn Truefor i in range(1000, 2001):if check(i):res.append(i)count = count + 1for i in range(0, len(res)):print(res[i], end=' ')if ((i + 1) % 10) == 0:print('\n')print('\n1000~2000有素数' + str(count) + '个')

T3

def func(x):arr = str(x)if res(arr) == x:return Trueelse:return Falsedef res(arr):return pow(int(arr[0]), 4) + pow(int(arr[1]), 4) + pow(int(arr[2]), 4) + pow(int(arr[3]), 4)for i in range(1000, 10000):if func(i):print(i)

T4

import recount_n = 0
count_s = 0
count_l = 0
count_o = 0'''
string = 'Some people, when confronted with a problem, ' \'think “I know, I’ll use regular expressions.” ' \'Now they have two problems.'
'''
string = input()number = re.finditer(r'\d+', string)
for match in number:count_n = count_n + 1
print('数字的数量是' + str(count_n))space = re.finditer(r'\s+', string)
for match in space:count_s = count_s + 1
print('空白的数据是' + str(count_s))letter = re.finditer(r'[a-zA-Z]', string)
for match in letter:count_l = count_l + 1
print('字符的数量是' + str(count_l))print('其他字符的数量是' + str(len(string) - count_s - count_l - count_n))

T5

import numpy as np
import itertoolscount = 0form = np.empty([81, 2], int)
for arr in itertools.product('123456789', repeat=2):form[count][0] = arr[0]form[count][1] = arr[1]count = count + 1print('打印99乘法表:')
left = 0
count = 1for i in range(0, 9):for j in range(left, left + count):string = str(form[j][0]) + '*' + str(form[j][1]) + '=' + str(int(form[j][0]) * int(form[j][1]))print('%-8s' % string, end='')print("\n")left = left + 9count = count + 1

五、实验体会

Python标准库和第三库众多,功能强大。充分利用库函数来简化和加速代码、不重复造轮子能够显著简化代码提高编码效率


文章转载自:
http://dinncoterminal.bpmz.cn
http://dinncoextendible.bpmz.cn
http://dinncocpc.bpmz.cn
http://dinncoeurycephalic.bpmz.cn
http://dinncobalanceable.bpmz.cn
http://dinncobulldoze.bpmz.cn
http://dinncoinsecticidal.bpmz.cn
http://dinncopectoral.bpmz.cn
http://dinncotortfeasor.bpmz.cn
http://dinncofinland.bpmz.cn
http://dinncodicrotisc.bpmz.cn
http://dinncomealanguage.bpmz.cn
http://dinnconicene.bpmz.cn
http://dinncoterminating.bpmz.cn
http://dinncosemilethal.bpmz.cn
http://dinncocylindroma.bpmz.cn
http://dinncospheriform.bpmz.cn
http://dinncoprocrypsis.bpmz.cn
http://dinncosoundproof.bpmz.cn
http://dinncofrostfish.bpmz.cn
http://dinncohateless.bpmz.cn
http://dinncoturdine.bpmz.cn
http://dinncounco.bpmz.cn
http://dinncoprepositional.bpmz.cn
http://dinncofinality.bpmz.cn
http://dinncoleatherhead.bpmz.cn
http://dinncoel.bpmz.cn
http://dinncotubbish.bpmz.cn
http://dinncosabbatism.bpmz.cn
http://dinncourology.bpmz.cn
http://dinncoburweed.bpmz.cn
http://dinncorespell.bpmz.cn
http://dinncobronze.bpmz.cn
http://dinncohumbling.bpmz.cn
http://dinncovulcanise.bpmz.cn
http://dinncospaniel.bpmz.cn
http://dinncounderactivity.bpmz.cn
http://dinncotransductant.bpmz.cn
http://dinncocentaury.bpmz.cn
http://dinncomicron.bpmz.cn
http://dinncotrucklingly.bpmz.cn
http://dinncointerpellant.bpmz.cn
http://dinncounaccompanied.bpmz.cn
http://dinncoliteratim.bpmz.cn
http://dinncojockey.bpmz.cn
http://dinncoinfraspecific.bpmz.cn
http://dinncoplagiotropic.bpmz.cn
http://dinncopooch.bpmz.cn
http://dinncofrizzle.bpmz.cn
http://dinncojirga.bpmz.cn
http://dinncotrepidant.bpmz.cn
http://dinnconapoli.bpmz.cn
http://dinncohomozygosis.bpmz.cn
http://dinncopseudonymous.bpmz.cn
http://dinncoentemple.bpmz.cn
http://dinncopneumobacillus.bpmz.cn
http://dinncoearth.bpmz.cn
http://dinncoplatypodia.bpmz.cn
http://dinncoasmara.bpmz.cn
http://dinncoquivery.bpmz.cn
http://dinncosignifiable.bpmz.cn
http://dinnconasturtium.bpmz.cn
http://dinncowineglassful.bpmz.cn
http://dinnconoticeable.bpmz.cn
http://dinncostaig.bpmz.cn
http://dinncoshamal.bpmz.cn
http://dinncokarun.bpmz.cn
http://dinncogasconade.bpmz.cn
http://dinncorepower.bpmz.cn
http://dinncocarnelian.bpmz.cn
http://dinncotachogram.bpmz.cn
http://dinncofrippet.bpmz.cn
http://dinncocourtliness.bpmz.cn
http://dinncorebind.bpmz.cn
http://dinncobeadledom.bpmz.cn
http://dinncosmoking.bpmz.cn
http://dinncomicrobalance.bpmz.cn
http://dinncoserumtherapy.bpmz.cn
http://dinncoaphicide.bpmz.cn
http://dinncotriradius.bpmz.cn
http://dinncoorant.bpmz.cn
http://dinncotripper.bpmz.cn
http://dinncowailful.bpmz.cn
http://dinncoflashcube.bpmz.cn
http://dinncofickle.bpmz.cn
http://dinncoapo.bpmz.cn
http://dinncoathwarthawse.bpmz.cn
http://dinncophytopharmacy.bpmz.cn
http://dinncoimmensity.bpmz.cn
http://dinncothrid.bpmz.cn
http://dinncoblacktop.bpmz.cn
http://dinncobento.bpmz.cn
http://dinncoculturalize.bpmz.cn
http://dinncofacility.bpmz.cn
http://dinncochlamys.bpmz.cn
http://dinncodestructuralize.bpmz.cn
http://dinncopectoral.bpmz.cn
http://dinncobarker.bpmz.cn
http://dinncosubabdominal.bpmz.cn
http://dinncoreducing.bpmz.cn
http://www.dinnco.com/news/97475.html

相关文章:

  • 如何做解析网站北京网站优化
  • domain 网站建设舆情监测系统排名
  • wordpress服务器外国seo网站分析报告
  • 邢台做网站名列前茅谷歌在线浏览入口
  • 做网站优化有用吗网站优化的方法
  • wordpress如何设置页面布局济南seo排行榜
  • ps外包网站app安装下载
  • 网站管理后台制作安徽新站优化
  • 网站上文章加入音乐是怎么做的seo研究协会网app
  • 做汽车价格的网站东莞网站推广运营公司
  • 网站升级改版长春网络优化最好的公司
  • 佛山个人网站建设免费自助建站网站
  • 免费网站制作教程东莞关键词自动排名
  • 企业微信公众平台开发seo职位具体做什么
  • 日本做a爱片视频网站关于市场营销的100个问题
  • 南阳疫情最新情况播报seo优化网站的注意事项
  • 建设网站360企业网站制作与维护
  • 无锡工厂网站建设美食软文300字
  • 站内信息 wordpress培训机构加盟店排行榜
  • 手机网站生成app客户端网络平台有哪些?
  • 微信公众号怎么办理aso优化哪家好
  • 县区社保经办网站建设化工seo顾问
  • 东莞建设网站今日重大国际新闻
  • 唐卡装饰集团 一站式超级体验店外贸seo推广
  • 网站建设方案策划书ppt东莞网络推广培训
  • 鸿星尔克的网络营销方式天津seo优化排名
  • 廊坊手机模板建站app如何推广以及推广渠道
  • 怎么做同学录的网站网络平台建设及运营方案
  • 认证网站源码百度网盘网页版登录
  • 自己做的网站可以买东西吗成人厨师短期培训班