收藏此站 联系我们 网站
当前位置:首页» 公司新闻 » 【建站服务】高端!网站定制/设计/优化/二次开发/制作/搭建-高唐高端网站建设-域名申请

【建站服务】高端!网站定制/设计/优化/二次开发/制作/搭建-高唐高端网站建设-域名申请

作者: 风兰 . 阅读量: 3 . 发表时间:2022-09-21 05:17:22

网站建设

上往建站提供服务器空间服务商百度快照排名网站托管百度推广运营,致力于设计外包服务与源代码定制开发360推广搜狗推广,增加网站的能见度及访问量提升网络营销的效果,主营:网站公司,百度推广公司电话,官网搭建服务,网站服务企业排名,服务器空间,英文域名等业务,专业团队服务,效果好。


高端!网站定制/设计/优化/二次开发/制作/搭建-高唐高端网站建设


网站建设.png

  1. 皇后问题 (循环递归法)

    #* queen problem with recurisonBOARD_SIZE = 8def under_attack(col, queens):
       left = right = col   for r, c in reversed(queens):
     #左右有冲突的位置的列号
           left, right = left - 1, right + 1
    
           if c in (left, col, right):
               return True
       return Falsedef solve(n):
       if n == 0:
           return [[]]
    
       smaller_solutions = solve(n - 1)
    
       return [solution+[(n,i+1)]
           for i in xrange(BOARD_SIZE)
               for solution in smaller_solutions               if not under_attack(i+1, solution)]for answer in solve(BOARD_SIZE):
       print answer
    Sonnet

       Sonnet

      gra***nnet@qq.com

    4年前 (2018-07-17)
  2.    琳琅月

      z46***0448@gmail.com

    305

    实例:

    def deduplication(self, nums):#找出排序数组的索引
        for i in range(len(nums)):
            if nums[i]==self:
                return i
        i=0
        for x in nums:
            if self>x:
                i+=1
        return iprint(deduplication(5, [1,3,5,6]))
    琳琅月

       琳琅月

      z46***0448@gmail.com

    3年前 (2019-07-13)
  3.    lfh1025

      LFH***5@HOTMAIL.COM

    23

    改进排序数组的索引:

    def deduplication(self, nums):
        if self in nums:                  #加入数字是否在数组的判断,不在则打印none
            for i in range(len(nums)):    #一个for循环加上if else即可找出数组索引
                if nums[i] == self:
                    return i            else:
                    i += 1
            return iprint(deduplication(5, [1, 3, 5, 6])


实例

#!/usr/bin/python

 

count = 0

while (count < 9):

   print 'The count is:', count

   count = count + 1

 

print "Good bye!"


运行实例 »

以上代码执行输出结果:


The count is: 0

The count is: 1

The count is: 2

The count is: 3

The count is: 4

The count is: 5

The count is: 6

The count is: 7

The count is: 8

Good bye!

while 语句时还有另外两个重要的命令 continue,break 来跳过循环,continue 用于跳过该次循环,break 则是用于退出循环,此外"判断条件"还可以是个常值,表示循环必定成立,具体用法如下:


# continue 和 break 用法

 

i = 1

while i < 10:   

    i += 1

    if i%2 > 0:     # 非双数时跳过输出

        continue

    print i         # 输出双数2、4、6、8、10

 

i = 1

while 1:            # 循环条件为1必定成立

    print i         # 输出1~10

    i += 1

    if i > 10:     # 当i大于10时跳出循环

        break


无限循环

如果条件判断语句永远为 true,循环将会无限的执行下去,如下实例:


实例

#!/usr/bin/python

# -*- coding: UTF-8 -*-

 

var = 1

while var == 1 :  # 该条件永远为true,循环将无限执行下去

   num = raw_input("Enter a number  :")

   print "You entered: ", num

 

print "Good bye!"

以上实例输出结果:


Enter a number  :20

You entered:  20

Enter a number  :29

You entered:  29

Enter a number  :3

You entered:  3

Enter a number between :Traceback (most recent call last):

  File "test.py", line 5, in <module>

    num = raw_input("Enter a number :")

KeyboardInterrupt

注意:以上的无限循环你可以使用 CTRL+C 来中断循环。



循环使用 else 语句

在 python 中,while … else 在循环条件为 false 时执行 else 语句块:


实例

#!/usr/bin/python

 

count = 0

while count < 5:

   print count, " is  less than 5"

   count = count + 1

else:

   print count, " is not less than 5"

以上实例输出结果为:


0 is less than 5

1 is less than 5

2 is less than 5

3 is less than 5

4 is less than 5

5 is not less than 5


简单语句组

类似 if 语句的语法,如果你的 while 循环体中只有一条语句,你可以将该语句与while写在同一行中, 如下所示:


实例

#!/usr/bin/python

 

flag = 1

 

while (flag): print 'Given flag is really true!'

 

print "Good bye!"

注意:以上的无限循环你可以使用 CTRL+C 来中断循环。

高端!网站定制/设计/优化/二次开发/制作/搭建-高唐高端网站建设


上往建站提供搭建网站域名注册官网备案服务网店详情页设计企业网店专业网络店铺管理运营全托管公司咨询电话,服务器空间,微信公众号托管网页美工排版,致力于域名申请竞价托管软文推广全网营销,提供标准级专业技术保障,了却后顾之忧,主营:虚拟主机网站推广百度竞价托管网站建设上网建站推广服务网络公司有哪些等业务,专业团队服务,效果好。

服务热线:400-111-6878 手机微信同号:18118153152(各城市商务人员可上门服务)


关键词:网站建设,企业网站,网站制作,网页设计,高端网站建设,企业网站制作,网页制作,制作网站,网站设计,高端网页设计,高端网站设计,做网站,自适应网站

全国服务热线
18114747181
二维码
手机端二维码
上往建站
地址:全国各地都有驻点商务 |  网站建设上往建站
在线咨询QQ:1120768800
 
QQ在线咨询
售前咨询热线
18114747181
营销顾问
营销顾问
售后服务热线
400-000-1116
售后服务
售后服务