15 lines
229 B
Python
15 lines
229 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Created on 2018年5月6日
|
|
@author: Irony
|
|
@site: https://pyqt.site , https://github.com/PyQt5
|
|
@email: 892768447@qq.com
|
|
@file:
|
|
@description:
|
|
"""
|
|
|
|
|
|
def sum(x, y):
|
|
return x + y
|