python入门知识

基本命令

print "Hello,world!"

python shell运行py文件
execfile(‘file.py’)

window端口扫描
import subprocess

cmd=”cmd.exe”
begin=101
end=200
while begin

一个不错的python教程

点击这里
删除线

冒泡排序

#!/usr/bin/python
# -*- coding: utf-8 -*-
def bubble(l):
    flag = True
    for i in range(len(l)-1, 0, -1):
        if flag: 
            flag = False
            for j in range(i):
                if l[j] > l[j + 1]:
                    l[j], l[j+1] = l[j+1], l[j]
                    flag = True
        else:
            break
    print l
li = [21,44,2,45,33,4,3,67]
bubble(li)

随机数

import random
random.randint(0,99)

出自这里

你可能感兴趣的:(python,命令)