摘要:
socket_server.py __author__ = "Alex Li" #-*-coding:utf-8-*- #服务器端 #简单操作 # import socket # server = socket.socket() # server.bind(('localhost',6969)) # 阅读全文
摘要:
# Author:Adminone names = ['alex','jack'] data = {} try: names[3] data['name'] except Exception as e : print("出错了",e) #不同错误统一处理 阅读全文
摘要:
__author__ = "Alex Li" def bulk(self): print("%s is yelling...." %self.name) class Dog(object): def __init__(self,name): self.name = name def eat(self 阅读全文
摘要:
__author__ = "Alex Li" import os # os.system() # os.mkdir() class Dog(object): name = "huazai" def __init__(self,name): self.name = name #只能访问类变量,不能访问 阅读全文
摘要:
28、Linux系统中病毒怎么解决 1)最简单有效的方法就是重装系统 2)要查的话就是找到病毒文件然后删除 中毒之后一般机器cpu、内存使用率会比较高 机器向外发包等异常情况,排查方法简单介绍下 top 命令找到cpu使用率最高的进程 一般病毒文件命名都比较乱,可以用 ps aux 找到病毒文件位置 阅读全文
摘要:
__author__ = "Alex Li" import os # os.system() # os.mkdir() class Dog(object): '''这个类是描述狗这个对象的''' def __init__(self,name): self.name = name self.__foo 阅读全文
摘要:
__author__ = "Alex Li" class Flight(object): def __init__(self,name): self.flight_name = name def checking_status(self): print("checking flight %s sta 阅读全文
摘要:
__author__ = "Alex Li" import os # os.system() # os.mkdir() class Dog(object): name = "huazai" def __init__(self,name): self.name = name #只能访问类变量,不能访问 阅读全文
摘要:
__author__ = "Alex Li" import os # os.system() # os.mkdir() # class Dog(object): # def __init__(self,name): # self.name = name # # # 实际上跟类没什么关系了,不传递se 阅读全文
摘要:
0.在你所在目录新建一个index.py入口文件 __author__ = "Alex Li" from lib.aa import C obj = C() print(obj.__module__) # 输出 lib.aa,即:输出模块 print(obj.__class__ ) # 输出 lib 阅读全文