我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Python随笔(一)、python基础

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Python随笔(一)、python基础

在pycharm下设置自己的模板:

在File---settings---File and Code Templates---Python script 脚本里添加:

#!/usr/bin/env python 

#-*- coding:utf-8 _*-  

""" 

@author:${USER} 

@file: ${NAME}.py 

@time: ${YEAR}/${MONTH}/${DAY} 

"""  

一、第一个python程序:

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: HelloWorld.py
@time: 2017/11/{DAY}
"""
print("HelloWorld!!!")
print("你好,世界")

二、变量和赋值:
#!usr/bin/env python
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: bianliang.py
@time: 2017/11/18
"""
#赋值
name = "chenjisong"
age = 30
print(name,age)

字符串类型的必须要加引号

a = 3
b = a
a = 5
print(a,b)

返回结果为(5,3)

解析:a = 3,内存地址指向3,b = a,则b = 3,此时a 和 b 都指向内存地址3,当 a = 5的时候,a 的内存地址指向了5,则a = 3 这个内存地址被回收了,但是b的内存地址未被回收,b仍然等于3,所以最后返回的结果是(5,3)

变量起名的原则:

      1、显示,通俗易懂

      2、驼峰写法(首字母大写)          例如:NumsOfJackGf

      3、下横线写法(不能为中横线)   例如:nums_of_jack_gf

      4、不能数字开头,但是可以在中间和结尾

      5、命名中不能有特殊字符

      6、变量的命名不能有空格

     7、关键字不能声明为变量

 内存地址的验证:

C:\Users\Administrator>python

Python 3.6.3 (v3.6.3:2c5fed8, Oct  3 2017, 18:11:49) [MSC v.1900 64 bit (AMD64)]

 on win32

Type "help", "copyright", "credits" or "license" for more information.

>>> import keyword

>>> a = 5

>>> b = a

>>> id(a),id(b)

(1363763552, 1363763552)

a 和 b的内存地址完全一样

>>> a = 10

>>> id(a),id(b)

>>> (1363763712, 1363763552)

当a的值改变之后,a的内存地址也发生了变化(是python中的内存地址,不是物理机器的内存地址)


三、用户交互


[root@python3 ~]# python
Python 3.6.3 (default, Nov 12 2017, 04:07:16)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> name = input("please input your name:")
please input your name:chenjisong

>>> print(name)

chenjisong

>>> a = 5
>>> eval('a')
5

四、条件判断与缩进

IF....ELSE和缩进


伪代码:

如果   你是富二代

          我们俩就拍拖

或者   你很努力上进

          我们可以接触试试

否则

          免谈


缩进要一致:
sex = input ("plsase input your gender:")
if sex == "gril":
   print("I would like to have a baby")
elif sex == "man":
   print("going to homesexual!")
else:
   print("Pervert!!!")

游戏:猜幸运数字:

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: lucky_number.py
@time: 2017/11/18
"""
lucky_number = 18
guess_number = int(input("can you guess my lucky_number:"))
if guess_number > lucky_number:
   print("guess_number is bigger then lucky_number")
elif guess_number < lucky_number:
   print("guess_number is smaller then lucky_number:")
else:
   print("congratulations,you guess it,but no prize")


五、循环控制:

break结束循环:(猜对即跳出循环,没猜对就一直猜)

while True:   
   lucky_number = 18
   guess_number = int(input("can you guess my lucky_number:"))
   if guess_number > lucky_number:
       print("guess_number is bigger then lucky_number")
   elif guess_number < lucky_number:
       print("guess_number is smaller then lucky_number:")
   else:
       print("congratulations,you guess it,but no prize")
       break
while lucky_number != input_num:
   input_num = int(input("input the guess num:"))
   if input_num > lucky_number:
       print("the real number is smaller")
   elif input_num < lucky_number:
       print("the real number is bigger")
   else:
print("bingo")


六、循环次数限制:

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: lucky_number.py
@time: 2017/11/18
"""
lucky_number = 18
input_num=-1
guess_count = 0
#while lucky_number != input_num:
while guess_count < 3:
   input_num = int(input("input the guess num:"))
   print("guess count:",guess_count)
   if input_num > lucky_number:
       print("the real number is smaller")
   elif input_num < lucky_number:
       print("the real number is bigger")
   else:
       print("Bingo!")
       break
   guess_count += 1
else:
   print("try too many times")

两重判断:

第一重:三次猜不对直接退出(guess_count>3),打印“try too many times”

第二重:猜对了直接打印bingo,退出

for循环猜数字游戏:

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: lucky_number.py
@time: 2017/11/18
"""
#while True:
lucky_number = 18
input_num=-1

for i in range(5):
   input_num = int(input("input the guess num:"))
   if input_num > lucky_number:
       print("the real number is smaller")
   elif input_num < lucky_number:
       print("the real number is bigger")
   else:
       print("Bingo!")
       break
else:
   print("try too many times")


七、常用数据类型

数据类型:

数字:

     int(整型)

     float(浮点型)

     long(长整型)

布尔:(True(1) 和  False(0))  真和假

字符串    str

列表        list

元祖       tuple

字典       dict

type可以查看数据类型:

>>> type(2**10)

<class 'int'>

>>> type(2.99)

<class 'float'>



八、字符串格式化

第一种写法会开辟很多内存空间,对内存资源是一种浪费,所以不建议

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: string_format.py
@time: 2017/11/18
"""
name = input("name:")
age = input("age:")
job = input("job:")

print("Information of "+ name +"\nName:" + name +"\nAge:"+ age +"\nJob:"+ job +"")

第二种写法只开辟了一块内存空间,可以有效节省内存资源,效率更优

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: string_format.py
@time: 2017/11/18
"""
name = input("name:")
age = input("age:")
job = input("job:")

print("Information of %s:\nName:%s\nAge:%s\nJob:%s" %(name,name,age,job))

%s要与后面的值一一对应,否则会报错

第三种写法:

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: string_format.py
@time: 2017/11/18
"""
name = input("name:")
age = input("age:")
job = input("job:")
msg = '''
Information of %s:
    Name:%s
    Age :%s
    Job :%s
'''   %(name,name,age,job)
print(msg)

'''   

    '''的妙用


九、列表常用操作:

strip:去掉,拿掉空格:以下例子去掉了前面的空格,但是中间的没法去掉

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: string_format.py
@time: 2017/11/18
"""
name = input("name:").strip()
age = input("age:").strip()
job = input("job:").strip()
msg = '''
Information of %s:
    Name:%s
    Age :%s
    Job :%s
'''   %(name,name,age,job)
print(msg)

输入

name:          chen    jisong

age:     22

job:                 IT

输出:

Information of chen    jisong:

     Name:chen    jisong

     Age :22

     Job :IT

也可以去掉字符:如下

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: string_format.py
@time: 2017/11/18
"""
name = input("name:").strip("chen")
age = input("age:").strip()
job = input("job:").strip()
msg = '''
Information of %s:
    Name:%s
    Age :%s
    Job :%s
'''   %(name,name,age,job)
print(msg)

输入

name:           chen    jisong

age:     22

job:                 IT

输出:

Information of jisong:

     Name:jisong

     Age :30

     Job :IT


列表索引(下标)取值:   []

[root@python3 ~]# python

Python 3.6.3 (default, Nov 12 2017, 04:07:16) 

[GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux

Type "help", "copyright", "credits" or "license" for more information.

>>> name_list = ["65brother","87brother","99brother"]

>>> name_list

['65brother', '87brother', '99brother']

>>> name_list[0]

'65brother'

>>> name_list[1]

'87brother'

>>> name_list[2]

'99brother'

>>> dir(name_list)

['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']

index        索引:

count       计数:

append    追加:

insert       插入:

pop          删除最后一个索引值

remove    删除固定的值

reverse     反转

sort           排序

extend      列表的扩展

>>> name_list

['65brother', '87brother', '99brother']

>>> name_list.append("Eric")

>>> name_list

['65brother', '87brother', '99brother', 'Eric']

>>> name_list.append("87brother")

>>> name_list

['65brother', '87brother', '99brother', 'Eric', '87brother']

>>> name_list.index("87brother")

1

>>> name_list.count("87brother")

2

>>> name_list.insert(2,"66brother")      在索引2之后加66brother

>>> name_list

['65brother', '87brother', '66brother', '99brother', 'Eric', '87brother']

>>> name_list.remove("66brother")

>>> name_list

['65brother', '87brother', '99brother', 'Eric', '87brother']

>>> name_list.pop()                               

'87brother'

>>> name_list

['65brother', '87brother', '99brother', 'Eric']

>>> name_list.reverse()

>>> name_list

['Eric', '99brother', '87brother', '65brother']

>>> name_list.sort()

>>> name_list

['65brother', '87brother', '99brother', 'Eric']

>>> name_list.append("87brother")

>>> name_list.append("87brother")

>>> name_list

['65brother', '87brother', '99brother', 'Eric', '87brother', '87brother']

要一次删除3个87brother,应当怎么做???

>>> for i in range(name_list.count('87brother')):

...    name_list.remove("87brother")

... 

>>> name_list

['65brother', '99brother', 'Eric']


十、列表的后续操作

[root@python3 ~]# python

Python 3.6.3 (default, Nov 12 2017, 04:07:16) 

[GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux

Type "help", "copyright", "credits" or "license" for more information.

>>> a = [1, 2, 4, 3, 'a', 'b']

>>> a

[1, 2, 4, 3, 'a', 'b']

>>> a.insert(1,8)     ---在索引一处插入数字

>>> a

[1, 8, 2, 4, 3, 'a', 'b']

正向切片:

>>> a[3:5]

[4, 3]

>>> a[0:7]

[1, 8, 2, 4, 3, 'a', 'b']

反向切片:

>>> a[-4:]

[4, 3, 'a', 'b']

>>> a[-4:-1]

[4, 3, 'a']

>>> a[0:7]

[1, 8, 2, 4, 3, 'a', 'b']

>>> a.sort()

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

TypeError: '<' not supported between instances of 'str' and 'int'  字符串和整型不能进行排序

>>> a[0:7]

[1, 2, 3, 4, 8, 'a', 'b']

>>> a.pop()

'b'

>>> a.pop()

'a'

>>> a.sort()

>>> a

[1, 2, 3, 4, 8]

拿掉字符串后即可进行排序

列表可以相加:

>>> a = [1,2,3,4,5,6,7,8,9]

>>> b = ["a","b","c","d","e","f","g","h","i"]

>>> a + b

[1, 2, 3, 4, 5, 6, 7, 8, 9, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']

>>> a.extend(b)

>>> a

[1, 2, 3, 4, 5, 6, 7, 8, 9, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']


十一、二进制位运算

元祖:

>>> t = (1,2,3,4)

>>> dir(t)

['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'count', 'index']

元祖改列表,用list方法:

>>> type(t)

<class 'tuple'>

>>> list(t)

[1, 2, 3, 4]

>>> type(t)

<class 'tuple'>

>>> a = list(t)

>>> type(a)

<class 'list'>


二进制运算:

>>> A = 10

>>> B = 50

>>> A & B              两者都真才为真

2

>>> A | B                两者有一真就为真

58

>>> A ^ B              一真一假则为真

56

>>> A >> 1            整体往右移一位

5

>>> A << 1            整体往左移一位

20

>>> B >> 1

25

>>> B << 1

100


逻辑运算符:与(and)  或(or)  非(not)

>>> sex = "man"

>>> age = 26

>>> if sex == "man" and age > 25:

...    print("time to get married")

... 

time to get married


>>> sex = "man"

>>> age = 26

>>> if sex == "man" or age < 23:

...     print("do not worried")

... 

do not worried


>>> name_list=["oldboy","alex","eric"]

>>> if "jack" not in name_list:

...      print("sorry")

... 

sorry


身份运算符(is    is not)

>>> name_list=["oldboy","alex","eric"]

>>> type(name_list) is tuple

False

>>> type(name_list) is list

True

>>> type(name_list) is not list

False

>>> type(name_list) is not tuple

True


十二、简单的嵌套循环

continue  跳出本次循环,继续下一次循环:


#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: cotinue.py
@time: 2017/11/19
"""  
for i in range(10):
   if i < 5:
       continue
   print(i)

执行结果如下:

E:\Python36\python.exe C:/Users/Administrator/PycharmProjects/S12/2017-11-18/cotinue.py

5

6

7

8

9


#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: cotinue.py
@time: 2017/11/19
"""
for j in range(5):
   for i in range(10):
       if i < 5:
           continue
       if j> 3:
           break
       print(i)

执行结果:

5

6

7

8

9

5

6

7

8

9

5

6

7

8

9

5

6

7

8

9


十三、文件的基本操作

读取文件的内容:

一次性加载所有内容到内存

obj.read()

一次性加载所有内容到内存,并根据行分割成字符串

obj.readlines()

每次仅读取一行数据:

for line in obj:

     print line

写入文件内容:

obj.write(“内容”)

关闭文件句柄:

obj.close()


打开文件:

file_obj = file("文件路径","模式")

file_obj = open("文件路径","模式")

打开文件的模式有:

r          以只读方式打开文件。

w         打开一个文件只用于写入。

a          打开一个文件用于追加。

w+       打开一个文件用于读写。

写文件的操作:

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: file_opr.py
@time: 2017/11/19
"""
f = open("test.log","w")
f.write("this is the first line\n")
f.write("this is the second line\n")
f.write("this is the third line\n")
f.write("this is the fourth line\n")
f.close()

test.log下面的文字:

this is the first line
this is the second line
this is the third line
this is the fourth line


读文件的操作,循环逐行读取:

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: file_opr.py
@time: 2017/11/19
"""
f = open("test.log","r")
#f.write("this is the first line\n")
#f.write("this is the second line\n")
#f.write("this is the third line\n")
#f.write("this is the fourth line\n")
for line in f:
   print (line),
f.close()

执行结果:

this is the first line

this is the second line

this is the third line

this is the fourth line

判断:

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: file_opr.py
@time: 2017/11/19
"""
f = open("test.log","r")
#f.write("this is the first line\n")
#f.write("this is the second line\n")
#f.write("this is the third line\n")
#f.write("this is the fourth line\n")
for line in f:
  if "third" in line:
      print ("this is 3 line")
  else:
      print(line)
f.close()

追加文件操作:

#!usr/bin/env python 
#-*- coding:utf-8 _*-  
"""
@author:Administrator
@file: file_opr.py
@time: 2017/11/19
"""
f = open("test.log","a")
#f.write("this is the first line\n")
#f.write("this is the second line\n")
#f.write("this is the third line\n")
#f.write("this is the fourth line\n")
#for line in f:
#   if "third" in line:
#       print ("this is 3 line")
#   else:
#       print(line)
f.write("8\n")
f.write("9\n")
f.write("5\n")
f.write("6\n")
f.write("7\n")
f.close()

test.log输出结果:

this is the first line
this is the second line
this is the third line
this is the fourth line
8
9
5
6
7


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Python随笔(一)、python基础

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Python随笔(一)、python基础

在pycharm下设置自己的模板:在File---settings---File and Code Templates---Python script 脚本里添加:#!/usr/bin/env python #-*- coding:utf-
2023-01-31

Python随笔(三)、python基础

一、练习:#!usr/bin/env python #-*- coding:utf-8 _*-  """ @author:Administrator @file: dictionary.py@time: 2017/11/19 """'''有
2023-01-31

Python随笔(二)、python基础

源自:http://www.cnblogs.com/wupeiqi/articles/4906230.html一、接收执行参数sys.argv   接收执行参数的函数#!usr/bin/env python #-*- coding:utf-
2023-01-31

Python随笔(四)、python基础

05 python s12 day4 迭代器原理及使用什么是迭代:可以直接作用于for循环的对象统称为可迭代对象(Iterable)。*可以被next()函数调用并不断返回下一个值的对象称为迭代器(Iterator)。所有的Iterabl
2023-01-31

python基础总结--随笔

1、python语言的特点1)高级     至少比c和c++都高级,呵呵 2)面向对象   Python 绝不想Java 或Ruby 仅仅是一门面向对象语言,事实上它融汇了多种编程风格 3)可升级      Python 提供了基本的开发模
2023-01-31

Python基础入门笔记(一)

前言(认识Python)既然学习 Python,那么至少得了解下这门语言,知道 Python 代码执行过程吧。Python 的历史有兴趣的百度百科下就有,这个不多说了。1、我们先来了解下什么是解释型语言和编译型语言?计算机是不能够识别高级语
2023-01-31

[PYTHON]python 基础笔记(

10. 编写一个Python脚本问题我提出的问题是: 我想要一个可以为我的所有重要文件创建备份的程序。尽管这是一个简单的问题,但是问题本身并没有给我们足够的信息来解决它。进一步的分析是必需的。例如,我们如何确定该备份哪些文件?备份保存在哪里
2023-01-31

Python基础笔记3

1.Python内置了很多有用的函数,我们可以直接调用。要调用一个函数,需要知道函数的名称和参数,比如求绝对值的函数abs,只有一个参数。可以直接从Python的官方网站查看文档:http://docs.python.org/3/libra
2023-01-31

python 随笔

# -*- coding: cp936 -*-import os,sys,time,smtplib,poplib#python -m BaseHTTPServer 80 在运行里面运行############################
2023-01-31

Python--基础一

Python基础:print & input & 变量 & 运算符 & Python数据类型 & 运算符与表达式注释单行注释#我注释了一行多行注释三个单引号'''括起来'''我可以注释多行我可以注释多行我可以注释多行'''三个双引号"""括
2023-01-30

python基础一

1989年的圣诞节期间,吉多·范罗苏姆为了打发时间,决心开发一个新的解释程序。1991年,第一个Python解释器诞生,它是用C语言实现的,并且能调用C语言的库文件。计算机不能直接理解任何除机器语言以为的语言,所以必须要把程序员所写的程序语
2023-01-30

python基础(一)

1.计算机是由什么组成的 CPU、内存、硬盘、输入输出设备 CPU 处理各种数据 相当于人的大脑 内存 存储临时数据 相当于人的临时记忆 硬盘 存储数据 相当于人的长期记忆2.
2023-01-30

python 基础(一)

第一个程序hello.py 以下为内容#!/usr/bin/env python# -*- coding:utf-8 -*-__author__ = 'teng'print 'hello'#!/usr/bin/env python表示使用
2023-01-31

Python基础(一)

(1)加法的两端只能是数字或者字符串。     如 print( 'kkk' + 12 + 'kkk' ) 是错误的,可修改为 print( 'kkk' + str(12) + 'kkk' ) 。类似 str() 的函数还有 int(),f
2023-01-31

Python随笔day01

环境变量的配置:  配置Python的安装目录到path变量中,例如C:\Python37标识符的命名规则:       变量名只能以数字,字母,下划线组成。       不能以数字开头,保留字不能被使用。       建议使用下划线分割s
2023-01-30

python随笔:range

range()是一个用来创建算数级数序列的通用函数。python3里,有自己的类型,range型。暂时的理解,实际是一个(32位电脑/python (-2**31,+2**31)),(64位电脑/python (-2**63,+2**63)
2023-01-31

Python基础(一):Python简单

一、Python简介Python是一种计算机程序设计语言。是一种面向对象的动态类型语言,可以应用于以下领域:Web 和 Internet开发科学计算和统计云计算人工智能系统运维Python 是由 Guido van Rossum 在八十年代
2023-01-31

Python总结:Python基础(一)

入门知识拾遗一、作用域对于变量的作用域,执行声明并在内存中存在,该变量就可以在下面的代码中使用。123if 1==1:    name = 'wupeiqi'print  name下面的结论对吗?外层变量,可以被内层变量使用内层变量,无法被
2023-01-31

python基础一(认识python及基

前言:    这个博客的就是笔者用来作总结的,只会写出一些必要的东西,所以并不适合一个初学者看一、python是什么    Python是一种计算机程序设计语言。是一种面向对象的动态类型语言,最初被设计用于编写自动化脚本(shell),随着
2023-01-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录