pythoncharm的简单操作
1 pythoncharm的简单设置
(1) 设置.py文件的代码模板
# -*- coding: utf-8 -*-
"""
@author:werewolf #此处写记者的名字
@time:${DATE} ${TIME}
"""
(2)设置路径:Editor>>File and Code Templates>>Python Script
(3)结果如下图
2 变量
1. 变量定义
存储数据的内存空间对象。定义一个变量,即想内存申请一个带地址的访问空间对象,用来存储数据,通过变量名找到指向(指向的值)。
2. 变量命名的规则:数字,字母和_的任意组合
3. 关键字不能是变量名
例子: 变量的创建与id;定义了一个变量name=‘zhaochao’;内存开辟一块空间,将zhaochao存储进入
例子2:两个变量名一个值
例子3 一个变量名两个值
2 常量
3 字符编码
- python解释器在加载.py文件中的代码时,会对内容进行编码(默认ascill)
1 字符串
1 字符串:单引号和双引号同样都是string
# -*- coding: utf-8 -*-
"""
@author:werewolf
@time:2019/11/27 15:21
#字符串单引号和双引号都是字符串
"""
str_name="this is string "
str_name1='this is also string'
print(str_name)
print(str_name1)
下列图片为运行结果
2 使用方法修改字符串的大小写
字符串.title()以首字母大写的方式显示每个单词 这很有用,因为你经常需要将名字视为信息
# -*- coding: utf-8 -*-
"""
@author:werewolf
@time:2019/11/27 15:29
"""
str_name="abc woshiyigeyingxong"
print(str_name.title());
下列图片为运行结果
3 将所有文档都大写或者小写
# -*- coding: utf-8 -*-
"""
@author:werewolf
@time:2019/11/27 15:29
"""
str_name="abc woshiyigeyingxong"
#print(str_name.title());
print(str_name.upper())
print(str_name.lower())
下列图片为运行结果:
4 字符串拼接
# -*- coding: utf-8 -*-
"""
@author:werewolf
@time:2019/11/27 16:26
"""
first_name="my baby"
last_name= "I love you "
full_name=first_name+":"+last_name;
print("hello,"+full_name.title()+".")
下列图片为运行结果:
4 将制表符或换行符来添加空白
去除单词前后空包rstrip()
# -*- coding: utf-8 -*-
"""
@author:werewolf
@time:2019/11/29 18:12
"""
print_languga="python "
a=print_languga.strip()
b=print_languga
print(id(a))
print((a,b))
print(id(b))
下列图片为运行结果: