初学Python-2

来源:互联网 发布:qq三国js要智力有用吗 编辑:程序博客网 时间:2024/06/05 08:45

1、Python 中,** 取幂;;// 取整除

2、Pycharm编辑环境添加头文件:file--settings--editor--file and code templetes--python script--添加#!usr/bin/env python

# -*- coding:utf-8 -*-

3、切换版本:file--settings--project codes--project interpreter

4、temp_unicode = temp.decode('utf-8')

print(temp_unicode)

5、基本数据类型:

数字:int; 字符串:str; 布尔值:bool; 列表:list 元组: tuple 字典:dict

6、查看对象的类或者对象所具备的功能

a:

temp = "<<<"

t=type(temp)

print(t)

#str ,ctrl+左键,找到str类,内部所有的办法

b:

temp = "<<<"

funcs = dir(temp)

c:

help ,type

help(type(temp))

d:

ctrl+左键,鼠标放在所需查看的对象上
ps:网易云课堂Python入门


原创粉丝点击