会Python的人,你惹不起

标签:

从今天开始学习Python。

首先当然是Hello world。

print "Hello world"

输出挺简单,然后试试输入。

name = raw_input("Enter your name:")
print "Hello " + name

也挺简单,再试试条件和循环,枚举100以内的质数。

for i in range(2, 101) :
    for j in range(2, i):
        if i % j == 0 : 
            break
    else:
        print i

感觉for的用法有点奇怪,最后再试试正则表达式,依然是质数。

import re
regex = re.compile(r"^1?$|^(11+?)\1+$")
for i in range(1, 100) :
    if not regex.match("1" * i) :
        print i

哥也是会Python的了,会Python的人,你惹不起。

赞赏

微信赞赏支付宝赞赏

随机文章:

  1. 用C语言调用WMI
  2. VB编程实现XP风格
  3. 用C语言实现PHP的basename函数
  4. Raspberry Pi树莓派新系统SSH连接被拒绝的解决方法
  5. Unable to find the socket transport "ssl" – did you forget to enable it when you configured PHP?

9 条评论 发表在“会Python的人,你惹不起”上

  1. Vayn说道:

    哈哈,我最近也在学 Python

  2. 公子说道:

    懂技术的人入门就是快

  3. 嘿嘿说道:

    其实,你早该学python,vbs不值得浪费你的时间~~~~

  4. hh说道:

    这也叫惹不起?

留下回复