当前位置:   article > 正文

python基础语法大全

python基础语法

目录

         1.jupyter简单操作

2.print()用法

3.math 举一个平方的例子

4.while for control+[/] 左/右缩进 (缩进是四个空格)

5.if        if_else       if_elif_else

6.function 函数定义格式

7.创建文件并写入

8.向已有文件中写入

9.读文件

10.class 类的创建

11.input函数

12.元组与列表

13.dictionary 字典

14.import 导入模块

15.break&continue 语句

16.zip map lambda 函数


1.jupyter简单操作

首先是编译器的简单操作,这里我选择的是jupyter notebook。下面是常用到的三个简单快捷键:

选中代码块使其变为蓝色,之后输入快捷键。

dd delet

shift+enter光标移动/ctrl+enter run

m markdown

下面是python的基础语法!

2.print()用法

  1. print(1)
  2. print('yi')
  3. print("i'm")
  4. print('i\'m')
  5. print('a'+'b')
输出:
1
yi
i'm
i'm
ab

3.math 举一个平方的例子

2**3

 8

4.while for control+[/] 左/右缩进 (缩进是四个空格)

  1. i=0
  2. while(i<3):
  3. print(i)
  4. i=i+1
  5. for i in range(1,5):
  6. print(i)

输出:0 1 2 1 2 3 4

5.if        if_else       if_elif_else

  1. if a>b:
  2. print()
  3. if a>b:
  4. print()
  5. else:
  6. print()
  7. if a>b:
  8. print()
  9. elif a=b:
  10. print()
  11. elif ...:
  12. .
  13. .
  14. .
  15. else:
  16. print()

6.function 函数定义格式

  1. def function(a,b):
  2. x=a+b
  3. print(x)
  4. function(3,4)

输出:7

函数默认参数的定义

  1. def default_fun(a,b=3):
  2. x=a+b
  3. print(x)
  4. default_fun(2)

输出:5

默认参数右边不能有需赋值的参数

  1. def default_fun(a=3,b):
  2. x=a+b
  3. print(x)
  4. default_fun(2)
报错  SyntaxError: non-default argument follows default argument

7.创建文件并写入

  1. text="1,2,3"
  2. file=open('text.txt','w')
  3. file.write(text)
  4. file.close()

8.向已有文件中写入

  1. append="\nhello world"
  2. file=open('text.txt','a')
  3. file.write(append)
  4. file.close()

9.读文件

  1. file=open('text.txt','r')
  2. a=file.read()
  3. print(a)

输出:

1,2,3
hello world

10.class 类的创建

  1. class calculator:
  2. price=18
  3. brand="casco"
  4. def add(self,x,y):
  5. result=x+y
  6. print(result)
  7. def show(self):#self
  8. print(self.price)
  9. calculator1=calculator()
  10. calculator1.add(3,5)
  11. calculator1.show()

输出

8
18

记住self和this指针类似不要忘记写

  1. class calculator:
  2. def __init__(self,name,price,brand,size):##init function
  3. self.n=name
  4. self.p=price
  5. self.b=brand
  6. self.s=size
  7. def show(self):
  8. print(self.n,self.p,self.b,self.s)
  9. calculator2=calculator('q',3,'y',2)
  10. calculator2.show()
  11. calculator2.n
  1. class calculator:
  2. def __init__(self,name='e',price=8,brand='u',size=7):##init function default
  3. self.n=name
  4. self.p=price
  5. self.b=brand
  6. self.s=size
  7. def show(self):
  8. print(self.n,self.p,self.b,self.s)
  9. calculator2=calculator()
  10. calculator2.show()

输出:e 8 u 7

11.input函数

  1. a=input()
  2. if a=='1':##input 默认字符串输入可强制类型转换
  3. print('yes')
  4. else:
  5. print('no')

输出 

1
yes

12.元组与列表

  1. a_tuple=(1,2,3,4,5,6)
  2. a_list=[7,6,5,4,3,2]
  3. for i in a_tuple:
  4. print(i) # i
  5. for i in range(len(a_list)):
  6. print(a_list[i]) #[ ]
  1. a_list=[7,6,5,4,3,2]
  2. a_list.append('a')
  3. print(a_list)
  4. a_list.insert(3,'h')
  5. print(a_list)
  6. a_list.remove('h')
  7. print(a_list)
  8. print(a_list[-1])
  9. print(a_list[2:4]) #2-3
  10. print(a_list.index('a')) # index
  11. b_list=[1,8,5,8,9,2]
  12. b_list.sort()
  13. print(b_list) #small->big
  14. b_list.sort(reverse=True)
  15. print(b_list) #big->small

输出:

[7, 6, 5, 4, 3, 2, 'a']
[7, 6, 5, 'h', 4, 3, 2, 'a']
[7, 6, 5, 4, 3, 2, 'a']
a
[5, 4]
6
[1, 2, 5, 8, 8, 9]
[9, 8, 8, 5, 2, 1]

多维列表

  1. a_multi_list=[
  2. [1,2,3],
  3. [4,5,6],
  4. [7,8,9]
  5. ]
  6. print(a_multi_list[0][0]) #[a][b]

13.dictionary 字典

  1. diction={'key1':'value1','key2':'value2','key3':'value3'}
  2. print(diction['key2'])
  3. del diction['key2']
  4. print(diction)#字典中value可以是元组 列表 函数 字典。。

输出:

value2
{'key1': 'value1', 'key3': 'value3'}

14.import 导入模块

  1. import time as t
  2. print(t.localtime())

输出:

time.struct_time(tm_year=2022, tm_mon=6, tm_mday=26, tm_hour=19, tm_min=57, tm_sec=2, tm_wday=6, tm_yday=177, tm_isdst=0)

15.break&continue 语句

  1. while True:
  2. b=input()
  3. if b=='1':
  4. print('end')
  5. break
  6. else:
  7. print('go on')
  1. while True:
  2. b=input()
  3. if b=='1':
  4. print('end')
  5. continue
  6. else:
  7. print('go on')

16.zip map lambda 函数

zip:

  1. a=[1,2,3]
  2. b=[4,5,6]
  3. zip(a,b)
  4. list(zip(a,b))
[(1, 4), (2, 5), (3, 6)]
  1. a=[1,2,3]
  2. b=[4,5,6] # 1 2 3
  3. zip(a,b,b) # 4 5 6
  4. list(zip(a,b,b)) # 4 5 6
[(1, 4, 4), (2, 5, 5), (3, 6, 6)]

lambda 的作用和函数类似

  1. def plus(x,y):
  2. return(x+y)
  3. plus(2,6)

7

  1. plus2=lambda x,y:x+y
  2. plus2(4,3)

7

map:

  1. def plus(x,y):
  2. return(x+y)
  3. map(plus,[1],[2])
  4. list(map(plus,[1],[2]))

[3]

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/159775
推荐阅读
相关标签
  

闽ICP备14008679号