尝试将字符串和整数相乘时出现问题。
尝试将字符串和整数相乘时出现问题。
这个问题已经有答案了:
这是我的Employee
类:
class Employee: def __init__(self, first, last, pay): self.first = first # Instance Variable self.last = last # Instance Variable self.pay = pay # Instance Variable self.email = first + '.' + last + '@gmail.com' # Instance Variable def fullname(self): #method inside the class return '{} {}'.format(self.first, self.last) def apply_raise(self): self.pay = int(self.pay * 3 ) emp_1 = Employee('Corey', 'Schafer' , '5000') emp_1.apply_raise() print(emp_1.pay)
我想在调用apply_raise
方法后得到结果5000 * 3 = 15000
,但是我得到的是三个5000,如下所示:
500050005000
admin 更改状态以发布 2023年5月23日