社区所有版块导航
Python
python开源   Django   Python   DjangoApp   pycharm  
DATA
docker   Elasticsearch  
aigc
aigc   chatgpt  
WEB开发
linux   MongoDB   Redis   DATABASE   NGINX   其他Web框架   web工具   zookeeper   tornado   NoSql   Bootstrap   js   peewee   Git   bottle   IE   MQ   Jquery  
机器学习
机器学习算法  
Python88.com
反馈   公告   社区推广  
产品
短视频  
印度
印度  
Py学习  »  Python

python类:当我调用类方法时,它总是在结果中输出一个“无”

Shawn11 • 3 年前 • 1165 次点击  

我正在写一个代码来记录一个员工系统,这个类可以打印全名,电子邮件:

class Employee:

    def __init__(self,first,last):
        self.first=first
        self.last=last
        
    def fullname(self):
        print('{} {}'.format(self.first,self.last))
    def email(self):
        print('{}.{}@email.com'.format(self.first,self.last))

emp_1=Employee('John','Smith')
emp_1.first='Jim'

print(emp_1.first)
print(emp_1.email())
print(emp_1.fullname())

输出如下:

output

我不明白为什么我调用方法( email() , fullname() ),我有一个 None 在输出范围内?

输出为:

Jim
Jim.Smith@email.com
None
Jim
Smith
None
Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/130932
 
1165 次点击  
文章 [ 1 ]  |  最新文章 3 年前