不鼓励这样访问,但是可以访问到
class Person(object):
def __init__(self, name, score):
self.name = name
self.__score = score
p = Person('Bob', 59)
print p.name
print p._Person__score
class Person(object):
def __init__(self, name, score):
self.name = name
self.__score = score
p = Person('Bob', 59)
print p.name
print p._Person__score
2019-12-25
最新回答 / 终实软件
首先你可以尝试下:https://jingyan.baidu.com/album/76a7e409288080fc3b6e15d0.html?picindex=2百度的方法。如果不行, sudo python -m ensurepip --default-pip再不行,https://blog.csdn.net/Denfance1003/article/details/49641037,安装完后在命令行安装pip.
2019-12-18
import time
def performance(f):
def jishi(*args):
time1 = time.time()
result=f(*args)
time2 = time.time()
#print (time2 - time1)
print("call "+f.__name__+"() "+"in "+str(time2-time1))
return result
return jishi
def performance(f):
def jishi(*args):
time1 = time.time()
result=f(*args)
time2 = time.time()
#print (time2 - time1)
print("call "+f.__name__+"() "+"in "+str(time2-time1))
return result
return jishi
2019-12-12
最新回答 / 凌寒_LingHan
主要的报错原因是你的写的三元表达式缺了else部分,在python中,三元表达式(为真时的结果 if 判断条件 else 为假时的结果)是一个整体
2019-12-12
def count():
fs=[]
for i in range(1,4):
def f(i):
return i*i
fs.append(f)
return fs
f1,f2,f3=count()
print f1(1),f2(2),f3(3)
fs=[]
for i in range(1,4):
def f(i):
return i*i
fs.append(f)
return fs
f1,f2,f3=count()
print f1(1),f2(2),f3(3)
2019-12-12
import math
def is_sqr(x):
return math.sqrt(x)*10%10==0
print filter(is_sqr, range(1, 101))
def is_sqr(x):
return math.sqrt(x)*10%10==0
print filter(is_sqr, range(1, 101))
2019-12-12
最新回答 / DreamCatcherCai
首先在循环中的i作为的是f的实参,而f里面的g()使用的是f的形参j来定义函数,即这里的代码实现的是从变动的实参过渡到不变的形参来定义内层函数。
2019-12-11
最赞回答 / weixin_慕丝8347161
我也是初学,我的理解是这样,不知道对不对print f()执行f函数,而f=calc_prod([1, 2, 3, 4]),意味着f函数是calc_prod([1, 2, 3, 4])调用之后返回的函数对象。即lazy_prod函数。也就是说调用的其实是lazy_prod()函数,lazy_prod函数返回的是reduce(f,lst),也就是对lst集合进行f函数的reduce操作,其次就进入f(x,y)函数,这个函数返回的是x*y,也就是对lst集合进行累乘操作,结果就是1*2*3*4=24
2019-12-08