搭载编程环境
过于复杂,略
给自己的代码署名
加上接下来的代码
# -*- coding: utf-8 -*-
# @Time : ${DATE} ${TIME}
# @Author : 这里输入用户名
# @Email : 这里输入邮箱
# @File : ${NAME}.py
# @Software: ${PRODUCT_NAME}
基础知识
- 建立第一个python程序文件
file->new->python file->输入文件名->开始编写
- 注释:
单行注释格式:#xxxxxxxx
多行注释格式:
'''
注释内容
'''
"""
注释内容
"""
-
变量类型:
- 两个变量互换:
#两个数值实现交换
a = 1
b = 2
temp = b
b = a
a = temp
print('a的值是:', a, 'b的值是:', b)
#python做法
a, b = b, a
print('a的值是:', a, 'b的值是:', b)
#逗号后加空格,为了美观
- 一个好的学习网站;
github
- 了解一个变量的类型type函数:
type(a)#查看a的类型
- 标识符:
c++、python标识符以字母、下划线和数字组成,且数字不能开头;
java标识符以字母、下划线、汉字、美元符号’$‘和数字组成,且数字不能开头;
html不区分大小写,python区分;
- 命名规则:
经常采用驼峰式命名法
也有下划线:user_name
- 格式化输出;
hero_name = 'hero'
level = 15
print('你选择的英雄是%s当前等级为%d'%(hero_name,level))
#可读性更高
print('你选择的英雄是{hero_name}\n当前等级为{level}' .format(hero_name=hero_name,level = level))
- 输入:
raw_input(),接受键盘输入,括号内可加‘提示信息’,接受到的内容以字符串对待
input()函数与raw_input()类似,但其接受的输入必须是表达式
- 多变量赋值操作
name, age, sex = '赵公子', 18, 'f'
-
运算符:
运算的优先级:** 高于 * ,/ ,% ,// 高于 + ,-
注:建议用括号()来控制实际运算的优先级
- 数据类型转换
类型(要转的变量)
- eval函数
返回字符串长度
判断与循环
判断
- if else
if 要判断条件:
(四个缩进空格)条件成立时,要做的事情
age = input('请输入您的年龄') #字符串类型
age = int(age)
#age = 11
if age >=18:
print('你已经成年,可以去网吧了')
#嵌套
if age == 20:
print(’网吧冲会员减半‘)
else:
print('你还是个宝宝')
- elif
格式: if xxx1:
xxxx1
elif xxx2:
xxx2
elif xxx3:
xxx3
else:
上面条件都不满足时执行
score = 70
if score <= 90 and score >= 70:
print('考试A等')
elif score <= 70 and score >= 60:
print('考试B等')
else :
print('不及格')
elif必须和if一起使用,否则出错
else用在最后
写成一句:
#如果等于77,则更改为字符串内容,不等则照常输出
score = '你的分数是77'if score == 77 else score
print(score)
- 猜拳游戏:
#随机数
import random
player = input('请输入:剪刀(0),石头(1),布(2)')
player = int(player)
#生成0到2之间的随机整数
computer = random.randint(0, 2)
#获胜的情况
if ((player == 0 and computer == 2)
or(player == 1 and computer == 0)
or(player == 2 and computer == 1)):
print('你赢啦')
#平局的情况
elif((player == computer)):
print('平局,要不要再来一局?')
#输啦
else:
print('你输啦,要不要再来一局?')
循环
- while循环
while 条件:
条件满足时执行的事情
#写一个死循环
while True :
print('我错了')
i = 1
while i <10 :
print('我错了,这是第{}次道歉'.format(i))
i += 1
#计算1到100间偶数的累加和包含(1和100)
i = 1
sum = 0
while i <= 100:
if i % 2 == 0:
sum += i
i += 1
print(sum)
- 循环的嵌套
#输出效果:
#*
#**
#***
#****
#*****
i = 1
while i<= 5:
j = 1
while j <= i:
#加个参数取消换行
print("*",end = '')
j += 1
print('\n')
i += 1
#打印 九九乘法表
i = 1
j = 1
result = 0
while i <= 9:
j = 1
while j <= i:
result = i * j
print(i, "*", j, "=", result, ' ', end = '')
j += 1
print('\n')
i += 1
- for 循环
#for 临时变量 in 可迭代的对象:
# 循环满足要执行的事情
company = 'neusoft'
for x in company:
print(x)
if x == 's':
print("这个s要大写")
#循环100次
for i in range(100):
print(i)
#range(起始值,终止值,步长)
for j in range(1,101,2):
print(j)
- break and continue
break 立即结束break所在的循环
continue 结束当前循环,紧接着执行下一次循环
company = 'neusoft'
for x in company:
print('---------')
if x == 's':
#break
continue
print(x)
#else:
# print('for 循环没有执行continue,则执行本语句')
字符串
#字符串
word = "hello, 'c'"
word2 = 'hello,"c"'
print(word)
print(word2)
#访问字符串 下标
print(word[1])
#输出三次
name = 'lisi'
print(name*3)
- 切片
截取一部分的操作
#对象[起始: 终止: 步长] 不包含结束位置
name = 'abcdef'
print(name[0:3])
print(name[3:5])
print(name[2:])
print(name[1:-1])
print(name[:])
print(name[::2])
print(name[5:1:-2])
- 字符串常见操作
find():检查str 中是否包含在my_str 中,如果在返回开始的索引值,否则返回-1
index(): 跟find()一样 只不过str不在my_str中要报一个异常
count(): 返回目标字符串出现的次数
my_str = 'hello world neudu and neueducpp'
#find()
#检查str 中是否包含在my_str 中,如果在返回开始的索引值,否则返回-1
index1 = my_str.find('neudu')
print(index1)
index1 = my_str.find('neudu',0, 10)
print(index1)
#index() 跟find()一样 只不过str不在my_str中要报一个异常
index3 = my_str.index('neuedu',0, 10)
print(index3)
#count 返回目标字符串出现的次数
count2 = my_str.count('neuedu')
print(count2)
python的官方文档(可调中文)
docs.python.org