课程 | Python程序设计 |
---|---|
班级 | 2113 |
姓名 | 武久淳 |
学号 | 20211308 |
实验教师 | 王志强 |
实验日期 | 2022年3月17日 |
必修/选修 | 公选课 |
pycharm中可以点击三角号(run)
或者点击上方功能中的run
- 如何调试程序(以pycharm为例)
1.点击行数旁边即可添加一个断点
2.点击Debug或shift+F9即可进行调试
3.程序会在设置断点位置停止运行,下方的状态变量查看窗口会显示变量的值
a=" 武久淳" b="20211308" c=" love python" print(b +a+c)
字符串中可以用切片和乘的操作
字符串位置从0开始,指字符串中的第一位
【0:3】是左闭右开的区间指0位1位2位
for a in range(0,5): print("武久淳\n")
count=0 while count<5: print(count,"小于5") count+=1 else: print(count,"大于或等于5")
i=0 while i<10: if i ==1: print("1*1=%d"%(i**2)) if i ==2: print("2*1=2 2*2=4") if i ==3: print("3*1=3 3*2=6 3*3=9") if i ==4: print("4*1=4 4*2=8 4*3=12 4*4=16 ") if i ==5: print("5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 ") if i ==6: print("6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36") if i ==7: print("7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49") if i ==8: print("8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64") if i ==9: print("9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81") i+=1
print("Hello,world")
2.使用一个变量
message="hello,world" print(message)
注:1.变量名只能包括字母,数字下划线,变量名能以字母或下划线打头,不能以数字打头
2.变量名不能用空格
3.print()输出变量的时候不用加引号
3.字符串是一系列字符,可以用单引号也可以用双引号
4.使用方法修改字符串的大小写
name="wujiuchun" print(name.title())
5.在字符串里使用变量
first_name="wu" last_name="jiuchun" full_name=f"[first_name}{last_name}" print(full_name)
6.用python进行四则运算
print(2+4) print(4-2) print(3*4) print(12/4)
7.同时给多个变量赋值
x,y,z=0,0,0 print(x,y,z)
了解了python一些基本的语法,希望能够继续学习,继续收获。