Python base

//this is my first day to study python, in order to review, every day i will make notes (2016/7/31)

1. In python , there are many bulit-in funcation. you can user follow to find out hou many built-in funcation:

dir(__builtins__)

if you want get BIF detail, you can use follow code:

help(……)    such as help(input),int()

2. In python, you should be care to indent, if not , it will appear a lots error.

such as follow ,because indent error ,it will appear an error:

temp = input(‘input a num you want:‘)
    guess = int(temp)
    if guess == 8:
    print(‘you are right‘)
    else:
           print(‘you are wrong‘)

3. In python , when you define variable ,uppercase and lowercase is different.

such as:

temp = ‘roy‘

Temp = ‘wyg‘

temp and Temp is not same variable

4. In python , if you want to user ‘ in a string ,you can user escape charcters : \

such as:

print(‘Let\‘s go!‘)

5. In python , origin string is userful , maybe the follow result is not  you except

such as :

str = ‘c:\now\data‘

print(str)

result is :

c:

ow\data

you can solve this proble by str = r‘c:\now\data‘ ,this code is equal to str = ‘c:\\now\\data‘

when you print(str), the result will be c:\now\data

6. In python , if a string , you want to change row ,you can user ‘‘‘  ,if you not user ‘‘‘ and change row ,it will appear an error

such as:

str = ‘‘‘this

is

me‘‘‘

print(str)

the result is :

this

is

me

7. import module , such as if you want  a rand num , range is 1-10 and type is int ,how to achieve it

import random

randnum = random.randint(1,10)

时间: 2024-10-24 01:03:32

Python base的相关文章

Python Base Four

35. In python, file operation syntax is similar to c. open(file,'r',……) //the first parameters is necessary, other is optional ,the second parameters is 'r' by default if you want to open a file, you can use: f = open('//Users//wyg_mac//Desktop//Acco

Python Base Two

//fourth day to study python 24. In python , how to create funcation. we can use def to define funcation. such as: def MyFirstFuncation(): print('this is my first funcation') MyFirstFuncation() -> this is my first funcatio. if there are no MyFirstFun

Python Base Three

//sixth day to study python(2016/8/7) 32. In python , there are have an special type dictionary , it is same with oc. such as: dicOne = {'wyg':'write code change world', 'roy':'you cand do it', 'tom':'just do it'} dicOne -> {'wyg':'write code change

Python Base Five

// 8 day(2016/8/11) 38. In python , it is oop. class Baskball:         def setName(self, name):                self.name = name         def kick(self):                print('my name is %s' % self.name)      baskball = Baskball()      baskball.setName

Python Base HTTP Server

import BaseHTTPServerimport cgi, random, sysMESSAGES = ["That's as maybe, it's still a frog.","Albatross! Albatross! Albatross!","It's Wolfgang Amadeus Mozart.","A pink form from Reading.","Hello people, and we

python base 64

引言: 在一些项目中,接口的报文是通过base64加密传输的,所以在进行接口自动化时,需要对所传的参数进行base64编码,对拿到的响应报文进行解码: Base64编码是一种“防君子不防小人”的编码方式.广泛应用于MIME协议,作为电子邮件的传输编码,生成的编码可逆,后一两位可能有“=”,生成的编码都是ascii字符.优点:速度快,ascii字符,肉眼不可理解缺点:编码比较长,非常容易被破解,仅适用于加密非关键信息的场合python2中进行Base64编码和解码>>> import ba

基于Python+协程+多进程的通用弱密码扫描器

听说不想扯淡的程序猿,不是一只好猿.所以今天来扯扯淡,不贴代码,只讲设计思想. 0x00 起 - 初始设计 我们的目标是设计一枚通用的弱密码扫描器,基本功能是针对不同类型的弱密码,可方便的扩展,比如添加SSH.SVN.phpmyadmin的弱密码扫描功能.我们设定启动方法是命令行,可以通过命令行指定扫描对象,以及扫描哪些弱密码. 既然是要求可扩展,那我们首先来编写一个通用的框架,然后通过添加POC的方法来实现扩展.在这个框架中,我们需要处理的事情包括: 初始化扫描对象(格式化URL.从文件或数据

python中super的使用

转自:http://python.jobbole.com/86787/ super() 的入门使用 在类的继承中,如果重定义某个方法,该方法会覆盖父类的同名方法,但有时,我们希望能同时实现父类的功能,这时,我们就需要调用父类的方法了,可通过使用 super 来实现,比如: class Animal(object): def __init__(self, name): self.name = name def greet(self): print 'Hello, I am %s.' % self.

ParisGabriel:Python无止境 day02

ParisGabriel Python 入门基础 补充: 主流3操作大系统 Windows: Winxp   Win7 Win8 Win10 Unix: Solaris(SUN) IOS(Apple移动端) Mac OS Linux  :(linux基于Unix 独立出来的系统) 安卓(Android) Ubuntu 16.04(当前教学版本) ReadHat CentOS 回顾: Ctrl + Alt + Enter :虚拟机全屏/退出全屏 Ctrl + Alt :释放鼠标 ctrl + sh