python数据处理之numpy和pandas(下)

 python数据处理之numpy和pandas(下)



2.三种数据筛选方式

pandas筛选数据是比较好用的,至少比Excel要好一些,再加上可视化的数据模块,简直是大数据中的一把处理利器。值得一提的是曾经pandas中又一个很好用的.ix数据筛选方法,但是会在实际使用的过程中出现歧义,就被新版本的弃用了,所以现在是永不了.ix去筛选数据的。下面我们就开始介绍着四种数据筛选方式,都在代码里面贴出:

  
  
  1. import numpy as np
  2. import pandas as pd
  3. dates = pd.date_range( '20171010', periods= 6)
  4. df = pd.DataFrame(np.arange( 24).reshape(( 6, 4)), index = dates, columns=[ 'A', 'B', 'C', 'D'])
  5. print(df)
  6. #普通的筛选方式
  7. print( "普通的筛选方式")
  8. print(df[ 'A'],df.A)
  9. print(df[ 0: 3],df[ '20171010': '20171012'])
  10. #基于loc的筛选
  11. print( "基于loc的筛选")
  12. print(df.loc[ '20171010'])
  13. print(df.loc[:,[ 'A', 'C']])
  14. print(df.loc[ '20171010',[ 'A', 'C']])
  15. #基于iloc的筛选
  16. print( "基于iloc的筛选")
  17. print(df.iloc[ 3, 1])
  18. print(df.iloc[ 3: 5, 1: 3])
  19. print(df.iloc[[ 1, 3, 5,], 1: 3])
  20. #基于条件筛选
  21. print( "基于条件筛选")
  22. print(df[df.B> 8])
普通的筛选想必大家在学习python基本语句用法的列表和字典那一部分是已经了解过的,不需要再继续解读。下面开始介绍基于index为字母的筛选,首先,找到index某一行的值,就直接df.loc['行的名字'],这样就能直接打印出来这一行的所有带索引的数值,要是打印间断的某几行,只需要用逗号隔开这几行就行了,要是想打印某几行某几列这样切片的数据,就需要在将行数写出来,中间用逗号隔开,后面列再用方括号括起来继续写某些列,这样就能切片出来某些想要的数据。而要将索引数字化的情况下筛选数据,就要使用iloc了,它的使用规则和loc相同,只是index变成了数字。而基于条件的筛选就更直白了,确定某一行或者某一列的数值进行条件判断输出符合条件的即可。下面是输出的结果:

  
  
  1. A B C D
  2. 2017 -10 -10 0 1 2 3
  3. 2017 -10 -11 4 5 6 7
  4. 2017 -10 -12 8 9 10 11
  5. 2017 -10 -13 12 13 14 15
  6. 2017 -10 -14 16 17 18 19
  7. 2017 -10 -15 20 21 22 23
  8. 普通的筛选方式
  9. 2017 -10 -10 0
  10. 2017 -10 -11 4
  11. 2017 -10 -12 8
  12. 2017 -10 -13 12
  13. 2017 -10 -14 16
  14. 2017 -10 -15 20
  15. Freq: D, Name: A, dtype: int32 2017 -10 -10 0
  16. 2017 -10 -11 4
  17. 2017 -10 -12 8
  18. 2017 -10 -13 12
  19. 2017 -10 -14 16
  20. 2017 -10 -15 20
  21. Freq: D, Name: A, dtype: int32
  22. A B C D
  23. 2017 -10 -10 0 1 2 3
  24. 2017 -10 -11 4 5 6 7
  25. 2017 -10 -12 8 9 10 11 A B C D
  26. 2017 -10 -10 0 1 2 3
  27. 2017 -10 -11 4 5 6 7
  28. 2017 -10 -12 8 9 10 11
  29. 基于loc的筛选
  30. A 0
  31. B 1
  32. C 2
  33. D 3
  34. Name: 2017 -10 -10 00: 00: 00, dtype: int32
  35. A C
  36. 2017 -10 -10 0 2
  37. 2017 -10 -11 4 6
  38. 2017 -10 -12 8 10
  39. 2017 -10 -13 12 14
  40. 2017 -10 -14 16 18
  41. 2017 -10 -15 20 22
  42. A 0
  43. C 2
  44. Name: 2017 -10 -10 00: 00: 00, dtype: int32
  45. 基于iloc的筛选
  46. 13
  47. B C
  48. 2017 -10 -13 13 14
  49. 2017 -10 -14 17 18
  50. B C
  51. 2017 -10 -11 5 6
  52. 2017 -10 -13 13 14
  53. 2017 -10 -15 21 22
  54. 基于条件筛选
  55. A B C D
  56. 2017 -10 -12 8 9 10 11
  57. 2017 -10 -13 12 13 14 15
  58. 2017 -10 -14 16 17 18 19
  59. 2017 -10 -15 20 21 22 23

3.数据更改

对于已知的pandas数组,如果想要更改它其中的数据,方法是有的而且还不少,现在我们就开始先介绍一下吧:

   
   
  1. import numpy as np
  2. import pandas as pd
  3. dates = pd.date_range( '20171010',periods= 6)
  4. df = pd.DataFrame(np.arange( 24).reshape(( 6, 4)), index = dates, columns=[ 'A', 'B', 'C', 'D'])
  5. print(df)
  6. df.iloc[ 2, 2] = 1111
  7. print(df)
  8. df.loc[ '20171013', 'C'] = 2222
  9. print(df)
  10. df.B[df.A> 4] = 0
  11. print(df)
  12. df[ 'F'] = 0
  13. print(df)
  14. df[ 'G'] = pd.Series([ 1, 2, 3, 4, 5, 6],index=pd.date_range( '20171010',periods= 6))
  15. print(df)


如上代码所示,先建立一个数据矩阵,列索引用日期,行索引用大写字母。如果想改变数据中的某个值即单值改变,那么比较恰到的方法当然是上面所要提到的loc和iloc,loc索引是需要写出来索引的名字而iloc只需要填写坐标,我个人还是倾向于填写坐标的方式来进行改写数据,改变某个值就直接复制好了,十分方便的。如果你在图像处理的过程中想设定阈值对里面的数据进行判别,就需要条件设置了,这种方法在上文中有所提到,即判断A列数值是否大于4,找出大于4的若干行,在这几行中B列的元素全部置零。如果批量处理某些整行或者整列的话就则需要像上面代码里面所描述的那,只需要赋值一个数就代表整列,若是这一列都是不同的数值就需要用iloc了。还可以通过Series序列去添加数据,依然是可以的。下面将结果显示出来:

   
   
  1. A B C D
  2. 2017 -10 -10 0 1 2 3
  3. 2017 -10 -11 4 5 6 7
  4. 2017 -10 -12 8 9 10 11
  5. 2017 -10 -13 12 13 14 15
  6. 2017 -10 -14 16 17 18 19
  7. 2017 -10 -15 20 21 22 23
  8. A B C D
  9. 2017 -10 -10 0 1 2 3
  10. 2017 -10 -11 4 5 6 7
  11. 2017 -10 -12 8 9 1111 11
  12. 2017 -10 -13 12 13 14 15
  13. 2017 -10 -14 16 17 18 19
  14. 2017 -10 -15 20 21 22 23
  15. A B C D
  16. 2017 -10 -10 0 1 2 3
  17. 2017 -10 -11 4 5 6 7
  18. 2017 -10 -12 8 9 1111 11
  19. 2017 -10 -13 12 13 2222 15
  20. 2017 -10 -14 16 17 18 19
  21. 2017 -10 -15 20 21 22 23
  22. A B C D
  23. 2017 -10 -10 0 1 2 3
  24. 2017 -10 -11 4 5 6 7
  25. 2017 -10 -12 8 0 1111 11
  26. 2017 -10 -13 12 0 2222 15
  27. 2017 -10 -14 16 0 18 19
  28. 2017 -10 -15 20 0 22 23
  29. A B C D F
  30. 2017 -10 -10 0 1 2 3 0
  31. 2017 -10 -11 4 5 6 7 0
  32. 2017 -10 -12 8 0 1111 11 0
  33. 2017 -10 -13 12 0 2222 15 0
  34. 2017 -10 -14 16 0 18 19 0
  35. 2017 -10 -15 20 0 22 23 0
  36. A B C D F G
  37. 2017 -10 -10 0 1 2 3 0 1
  38. 2017 -10 -11 4 5 6 7 0 2
  39. 2017 -10 -12 8 0 1111 11 0 3
  40. 2017 -10 -13 12 0 2222 15 0 4
  41. 2017 -10 -14 16 0 18 19 0 5
  42. 2017 -10 -15 20 0 22 23 0 6

4.数据整合和处理

在处理一些数据的过程中,可能会出现一些数据块是空的或者为np.NaN的类型,如何删除或者是填补这些数据呢,下面需要提及的就是几个相对好用的函数:

   
   
  1. import numpy as np
  2. import pandas as pd
  3. dates = pd.date_range( '20171010',periods= 6)
  4. df = pd.DataFrame(np.arange( 24).reshape(( 6, 4)),index=dates,columns=[ 'A', 'B', 'C', 'D'])
  5. df.iloc[ 0, 1]=np.nan
  6. df.iloc[ 1, 2]=np.nan
  7. print(df)
  8. print(df.dropna(axis= 0,how= 'any'))
  9. print(df.fillna(value= 1111))
  10. print(df.isnull())
  11. print(np.any(df.isnull())== True)
首先建立一个(6,4)的矩阵,使用numpy让数据成为规整的0-23,然后使用iloc将某两个数设置为NaN来创建一个这样包含我们需要处理的数据的位置。如果想处理掉含有NaN的行或者列使用dropna函数,axis=0是处理那一列,axis=1是处理那一行,而how的赋值可以是‘any’和‘all’,这其实是个判断,当赋值any的时候只要这一行或者这一列中会有NaN则就删除了这一行(列),但是赋值为'any'的时候,就需要这一行或者这一列全部是NaN,才会删除。如果想替代掉NaN为某个具体的值,需要做的是使用fillna函数,变量赋值为多少,NaN这个位置就会被赋值为多少。还有一个函数是返回布尔类型的数据,如果有数据为NaN,就会返回True,否则返回False。下面贴出来运行结果:

   
   
  1. A B C D
  2. 2017 -10 -10 0 NaN 2.0 3
  3. 2017 -10 -11 4 5.0 NaN 7
  4. 2017 -10 -12 8 9.0 10.0 11
  5. 2017 -10 -13 12 13.0 14.0 15
  6. 2017 -10 -14 16 17.0 18.0 19
  7. 2017 -10 -15 20 21.0 22.0 23
  8. A B C D
  9. 2017 -10 -12 8 9.0 10.0 11
  10. 2017 -10 -13 12 13.0 14.0 15
  11. 2017 -10 -14 16 17.0 18.0 19
  12. 2017 -10 -15 20 21.0 22.0 23
  13. A B C D
  14. 2017 -10 -10 0 1111.0 2.0 3
  15. 2017 -10 -11 4 5.0 1111.0 7
  16. 2017 -10 -12 8 9.0 10.0 11
  17. 2017 -10 -13 12 13.0 14.0 15
  18. 2017 -10 -14 16 17.0 18.0 19
  19. 2017 -10 -15 20 21.0 22.0 23
  20. A B C D
  21. 2017 -10 -10 False True False False
  22. 2017 -10 -11 False False True False
  23. 2017 -10 -12 False False False False
  24. 2017 -10 -13 False False False False
  25. 2017 -10 -14 False False False False
  26. 2017 -10 -15 False False False False
  27. True

5.数据的导入和导出

如果用pandas从本地导入一个文件(其支持的数据文件格式有很多种,在机器学习领域我们用的最多的还是CSV文件,在进行神经网络训练的时候,我们进行数据存储就是此种格式),要想读取一个文件则使用pd.read_csv(‘文件名’),想要写入一个文件则使用to_文件格式(‘文件名’),在这里需要着重提的是文件路径一定要正确。下面将代码和运行结果打印出来:

   
   
  1. import pandas as pd
  2. data = pd.read_csv( 'student.csv')
  3. print(data)
  4. data.to_pickle( 'student.pickle')
  5. Student ID name age gender
  6. 0 1100 Kelly 22 Female
  7. 1 1101 Clo 21 Female
  8. 2 1102 Tilly 22 Female
  9. 3 1103 Tony 24 Male
  10. 4 1104 David 20 Male
  11. 5 1105 Catty 22 Female
  12. 6 1106 M 3 Female
  13. 7 1107 N 43 Male
  14. 8 1108 A 13 Male
  15. 9 1109 S 12 Male
  16. 10 1110 David 33 Male
  17. 11 1111 Dw 3 Female
  18. 12 1112 Q 23 Male
  19. 13 1113 W 21 Female

6.pandas数据合并

数据合并是一个非常重要的数据操作手段,下面会介绍两种形式的数据合并,第一种是基于concat的:

    
    
  1. import numpy as np
  2. import pandas as pd
  3. #concatenating
  4. df1 = pd.DataFrame(np.ones(( 3, 4))* 0, columns=[ 'A', 'B', 'C', 'D'])
  5. df2 = pd.DataFrame(np.ones(( 3, 4))* 1, columns=[ 'A', 'B', 'C', 'D'])
  6. df3 = pd.DataFrame(np.ones(( 3, 4))* 2, columns=[ 'A', 'B', 'C', 'D'])
  7. print(df1)
  8. print(df2)
  9. print(df3)
  10. res = pd.concat([df1,df2,df3], axis= 0, ignore_index= True)
  11. print(res)
  12. #join['inner','outer']
  13. df1 = pd.DataFrame(np.ones(( 3, 4))* 0, columns=[ 'A', 'B', 'C', 'D'], index=[ 1, 2, 3])
  14. df2 = pd.DataFrame(np.ones(( 3, 4))* 1, columns=[ 'B', 'C', 'D', 'E'], index=[ 2, 3, 4])
  15. print(df1)
  16. print(df2)
  17. res = pd.concat([df1,df2],join= 'inner', ignore_index= True)
  18. print(res)
  19. df1 = pd.DataFrame(np.ones(( 3, 4))* 0, columns=[ 'A', 'B', 'C', 'D'], index=[ 1, 2, 3])
  20. df2 = pd.DataFrame(np.ones(( 3, 4))* 1, columns=[ 'B', 'C', 'D', 'E'], index=[ 2, 3, 4])
  21. print(df1)
  22. print(df2)
  23. res = pd.concat([df1,df2],axis= 1,join_axes=[df1.index])
  24. print(res)
  25. df1 = pd.DataFrame(np.ones(( 3, 4))* 0, columns=[ 'A', 'B', 'C', 'D'])
  26. df2 = pd.DataFrame(np.ones(( 3, 4))* 1, columns=[ 'A', 'B', 'C', 'D'])
  27. df3 = pd.DataFrame(np.ones(( 3, 4))* 1, columns=[ 'A', 'B', 'C', 'D'])
  28. print(df1)
  29. res = df1.append([df2,df3], ignore_index= True)
  30. print(res)
  31. df1 = pd.DataFrame(np.ones(( 3, 4))* 0, columns=[ 'A', 'B', 'C', 'D'])
  32. s1=pd.Series([ 1, 2, 3, 4],index=[ 'A', 'B', 'C', 'D'])
  33. res = df1.append(s1,ignore_index= True)
  34. print(res)
创建三个数据块,如果进行纵向合并,设置axis=0,axis默认值就是0。由于在创建的时候并没有给三个数据库指定具体的index,所以pandas自动生成的是数字0,1,2等,合并之后想要顺延使用同一标准只需要在concat函数中加上变量赋值ignore_index=True皆可以了。之后需要提到的变量参数有join,当赋值为‘outer’时,此时合并依靠横线索引,如果横向索引相同的就上下合并在一起,其他的各自为一列,其中空出来的数据位用NaN填充,当赋值为‘inner’时候,横向索引相同的会上下合并在一起,如果不想同就直接舍弃。接下来介绍join_axis,可以在其后赋值df1.index则是依靠df1的索引进行合并,相同行进行合并,不同行舍弃,当有空出来的部分用NaN补齐。最后是只能纵向合并的append,设定一个Series序列可以通过append直接接到原来数据库的尾巴下。下面是输出的结果:

    
    
  1. A B C D
  2. 0 0.0 0.0 0.0 0.0
  3. 1 0.0 0.0 0.0 0.0
  4. 2 0.0 0.0 0.0 0.0
  5. A B C D
  6. 0 1.0 1.0 1.0 1.0
  7. 1 1.0 1.0 1.0 1.0
  8. 2 1.0 1.0 1.0 1.0
  9. A B C D
  10. 0 2.0 2.0 2.0 2.0
  11. 1 2.0 2.0 2.0 2.0
  12. 2 2.0 2.0 2.0 2.0
  13. A B C D
  14. 0 0.0 0.0 0.0 0.0
  15. 1 0.0 0.0 0.0 0.0
  16. 2 0.0 0.0 0.0 0.0
  17. 3 1.0 1.0 1.0 1.0
  18. 4 1.0 1.0 1.0 1.0
  19. 5 1.0 1.0 1.0 1.0
  20. 6 2.0 2.0 2.0 2.0
  21. 7 2.0 2.0 2.0 2.0
  22. 8 2.0 2.0 2.0 2.0
  23. A B C D
  24. 1 0.0 0.0 0.0 0.0
  25. 2 0.0 0.0 0.0 0.0
  26. 3 0.0 0.0 0.0 0.0
  27. B C D E
  28. 2 1.0 1.0 1.0 1.0
  29. 3 1.0 1.0 1.0 1.0
  30. 4 1.0 1.0 1.0 1.0
  31. B C D
  32. 0 0.0 0.0 0.0
  33. 1 0.0 0.0 0.0
  34. 2 0.0 0.0 0.0
  35. 3 1.0 1.0 1.0
  36. 4 1.0 1.0 1.0
  37. 5 1.0 1.0 1.0
  38. A B C D
  39. 1 0.0 0.0 0.0 0.0
  40. 2 0.0 0.0 0.0 0.0
  41. 3 0.0 0.0 0.0 0.0
  42. B C D E
  43. 2 1.0 1.0 1.0 1.0
  44. 3 1.0 1.0 1.0 1.0
  45. 4 1.0 1.0 1.0 1.0
  46. A B C D B C D E
  47. 1 0.0 0.0 0.0 0.0 NaN NaN NaN NaN
  48. 2 0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0
  49. 3 0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0
  50. A B C D
  51. 0 0.0 0.0 0.0 0.0
  52. 1 0.0 0.0 0.0 0.0
  53. 2 0.0 0.0 0.0 0.0
  54. A B C D
  55. 0 0.0 0.0 0.0 0.0
  56. 1 0.0 0.0 0.0 0.0
  57. 2 0.0 0.0 0.0 0.0
  58. 3 1.0 1.0 1.0 1.0
  59. 4 1.0 1.0 1.0 1.0
  60. 5 1.0 1.0 1.0 1.0
  61. 6 1.0 1.0 1.0 1.0
  62. 7 1.0 1.0 1.0 1.0
  63. 8 1.0 1.0 1.0 1.0
  64. A B C D
  65. 0 0.0 0.0 0.0 0.0
  66. 1 0.0 0.0 0.0 0.0
  67. 2 0.0 0.0 0.0 0.0
  68. 3 1.0 2.0 3.0 4.0
merge也是数据合并的一种手段,它可以通过给on赋值来确定本次合并是依赖于那个索引值,也可以赋予多个值来进行一次合并,同时对how的赋值也能决定你是想要依赖什么样的手法合并,how赋值可以是一个自己定义的数据。如下所示:

    
    
  1. import pandas as pd
  2. left = pd.DataFrame({ 'key1':[ 'K0', 'K0', 'K1', 'K2'],
  3. 'key2':[ 'K0', 'K1', 'K0', 'K1'],
  4. 'A':[ 'A0', 'A1', 'A2', 'A3'],
  5. 'B':[ 'B0', 'B1', 'B2', 'B3']})
  6. right = pd.DataFrame({ 'key1':[ 'K0', 'K1', 'K1', 'K2'],
  7. 'key2':[ 'K0', 'K0', 'K0', 'K0'],
  8. 'C':[ 'C0', 'C1', 'C2', 'C3'],
  9. 'D':[ 'D0', 'D1', 'D2', 'D3']})
  10. print(left)
  11. print(right)
  12. res = pd.merge(left, right, on=[ 'key1', 'key2'],how= 'inner')
  13. print(res)
  14. res = pd.merge(left, right, on=[ 'key1', 'key2'],how= 'outer')
  15. print(res)
  16. res = pd.merge(left, right, on=[ 'key1', 'key2'],how= 'left')
  17. print(res)
  18. res = pd.merge(left, right, on=[ 'key1', 'key2'],how= 'right')
  19. print(res)

    
    
  1. A B key1 key2
  2. 0 A0 B0 K0 K0
  3. 1 A1 B1 K0 K1
  4. 2 A2 B2 K1 K0
  5. 3 A3 B3 K2 K1
  6. C D key1 key2
  7. 0 C0 D0 K0 K0
  8. 1 C1 D1 K1 K0
  9. 2 C2 D2 K1 K0
  10. 3 C3 D3 K2 K0
  11. A B key1 key2 C D
  12. 0 A0 B0 K0 K0 C0 D0
  13. 1 A2 B2 K1 K0 C1 D1
  14. 2 A2 B2 K1 K0 C2 D2
  15. A B key1 key2 C D
  16. 0 A0 B0 K0 K0 C0 D0
  17. 1 A1 B1 K0 K1 NaN NaN
  18. 2 A2 B2 K1 K0 C1 D1
  19. 3 A2 B2 K1 K0 C2 D2
  20. 4 A3 B3 K2 K1 NaN NaN
  21. 5 NaN NaN K2 K0 C3 D3
  22. A B key1 key2 C D
  23. 0 A0 B0 K0 K0 C0 D0
  24. 1 A1 B1 K0 K1 NaN NaN
  25. 2 A2 B2 K1 K0 C1 D1
  26. 3 A2 B2 K1 K0 C2 D2
  27. 4 A3 B3 K2 K1 NaN NaN
  28. A B key1 key2 C D
  29. 0 A0 B0 K0 K0 C0 D0
  30. 1 A2 B2 K1 K0 C1 D1
  31. 2 A2 B2 K1 K0 C2 D2
  32. 3 NaN NaN K2 K0 C3 D3

7.数据可视化

数据可视化也是python学习中比较便利的一环,通过matplotlib库可以很轻松的实现饼形图柱状图等深线等高线等数据显示,下面我们来先简单的进行plot的出图:

    
    
  1. import pandas as pd
  2. import numpy as np
  3. import matplotlib.pyplot as plt
  4. data = pd.Series(np.random.randn( 1000),index=np.arange( 1000))
  5. data = data.cumsum()
  6. data.plot()
  7. plt.show()
创建一个Series随机生成一定数量的数据,暂且为1000个,对生成的值进行累加,然后直接plot出来就出现了图中的样式。有增有减是因为随机生成的值有正有负。
Series只能生成的是一个索引下的可视化,若想生成多条就需要使用DataFrame了,用同样的方法累加就会出现四条不同的数据线:

    
    
  1. import pandas as pd
  2. import numpy as np
  3. import matplotlib.pyplot as plt
  4. data = pd.DataFrame(np.random.randn( 1000, 4),
  5. index = np.arange( 1000),
  6. columns=list( "ABCD"))
  7. data=data.cumsum()
  8. data.plot()
  9. plt.show()
如果想显示一些散点而不是连接的线,则需要使用scatter函数,通过变量赋值还可以设置散点的颜色参数,标号等,下面就是具体操作:

    
    
  1. import pandas as pd
  2. import numpy as np
  3. import matplotlib.pyplot as plt
  4. data = pd.DataFrame(np.random.randn( 1000, 4),
  5. index = np.arange( 1000),
  6. columns=list( "ABCD"))
  7. data=data.cumsum()
  8. ax = data.plot.scatter(x= 'A',y= 'B',color= 'DarkBlue',label= 'Class1')
  9. data.plot.scatter(x= 'A',y= 'C',color= 'DarkGreen',label= 'Class2',ax=ax)
  10. plt.show()

后记

好了终于咬牙坚持写完了,自己等于又复习了一遍,以上三篇就是numpy和pandas的使用了,这只是一些基本的东西,只有深入到工程之中做一些实际的东西才会大有长进,本来想着将matplotlib也写一下呢,现在看看不必要了,因为在机器学习中这个包用的并不多,只会在计算机视觉领域常见一些吧!当然这是我的猜测和妄语,还请看见的人不要介怀。哎,文章也没人看,不过也好,没人看权当是自己在做笔记,以后真的有问题自己再回来看一下想必也很不错,为了能进烽火或者其他的公司,努力继续前进。加油~~~











评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值