Python | 如何创建模块(模块示例)?

This is an example of creating module in python. Module files are special file that are used as library files and can be accessed in another file.

这是在python中创建模块示例 。 模块文件是用作库文件的特殊文件,可以在另一个文件中访问。

In this example, there are two module files "mycheck.py" and "mymath.py" – the modules contains the functions related to the checking the numbers and mathematical operations

在此示例中,有两个模块文件“ mycheck.py”“ mymath.py” –这些模块包含与检查数字和数学运算有关的功能

Download all files

下载所有文件

pycheck.py

pycheck.py

def iseven(n):
ans=False
if n%2==0:
ans=True
return ans
def isodd(n):
ans=False
if n%2==1:
ans=True
return ans
def isprime(n):
ans=False
c=0
for i in range(1,n+1):
if n%i==0:
c=c+1
if c==2:
ans=True
return ans
def ispalindrome(n):
ans=False
m=n
rev=0
while n>0:
dig=n%10
rev = rev*10+dig
n=n//10
if rev==m:
ans=True
return ans

mymath.py

mymath.py

def sum(a,b):
c=a+b
return c
def difference(a,b):
c=a-b
return c
def product(a,b):
c=a*b
return c
def quotient(a,b):
c=a/b
return c
def remainder(a,b):
c=a%b
return c

Now, we are implementing the operations from the module functions in the below examples:

现在,我们在以下示例中通过模块功能实现操作:

Example 1) menu.py

示例1)menu.py

In this program all the functions of both modules i.e. mycheck.py/mymath.py are get loaded in menu.py’s memory and have to use module name as parent to access child functions.

在此程序中,两个模块的所有功能(即mycheck.py/mymath.py)都加载到menu.py的内存中,并且必须使用模块名称作为父项来访问子函数

import os
import mymath
import mycheck
def main():
ans=True
while ans:
os.system('cls')
print("MENU")
print("--------------------------------------")
print("1.Add")
print("2.Substract")
print("3.Multiply")
print("4.Divide")
print("5.Even Check")
print("6.Odd Check")
print("7.Prime Check")
print("8.Palindrome Check")
print("9.Exit")
print("-------------------------------------")
ch=int(input("Enter choice(1-9):"))
print("-------------------------------------")
if ch==1:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = mymath.sum(a,b)
print("Sum    :",c)
elif ch==2:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = mymath.difference(a,b)
print("difference    :",c)
elif ch==3:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = mymath.product(a,b)
print("Product    :",c)
elif ch==4:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = mymath.quotient(a,b)
print("Quotient    :",c)
elif ch==5:
n = int(input("Enter N: "))
if mycheck.iseven(n)==True:
print(n,"is Even")
else:
print(n,"is Not Even")
elif ch==6:
n = int(input("Enter N: "))
if mycheck.isodd(n)==True:
print(n,"is Odd")
else:
print(n,"is Not Odd")
elif ch==7:
n = int(input("Enter N: "))
if mycheck.isprime(n)==True:
print(n,"is Prime")
else:
print(n,"is Not Prime")
elif ch==8:
n = int(input("Enter N: "))
if mycheck.ispalindrome(n)==True:
print(n,"is Palindrome")
else:
print(n,"is Not Palindrome")
elif ch==9:
ans=False
print("-------------------------------------")
input("Press any key.....")
if __name__=="__main__":main()

Example 2) menu2.py

示例2)menu2.py

In this program all the functions of both modules i.e. mycheck.py/mymath.py are get loaded in menu2.py’s memory and child functions can be called directly

在该程序中,两个模块的所有功能(即mycheck.py/mymath.py)都加载到menu2.py的内存中,并且可以直接调用子功能

from os import *
from mymath import *
from mycheck import *
def main():
ans=True
while ans:
system('cls')
print("MENU")
print("--------------------------------------")
print("1.Add")
print("2.Substract")
print("3.Multiply")
print("4.Divide")
print("5.Even Check")
print("6.Odd Check")
print("7.Prime Check")
print("8.Palindrome Check")
print("9.Exit")
print("-------------------------------------")
ch=int(input("Enter choice(1-9):"))
print("-------------------------------------")
if ch==1:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = sum(a,b)
print("Sum    :",c)
elif ch==2:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = difference(a,b)
print("difference    :",c)
elif ch==3:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = product(a,b)
print("Product    :",c)
elif ch==4:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = quotient(a,b)
print("Quotient    :",c)
elif ch==5:
n = int(input("Enter N: "))
if iseven(n)==True:
print(n,"is Even")
else:
print(n,"is Not Even")
elif ch==6:
n = int(input("Enter N: "))
if isodd(n)==True:
print(n,"is Odd")
else:
print(n,"is Not Odd")
elif ch==7:
n = int(input("Enter N: "))
if isprime(n)==True:
print(n,"is Prime")
else:
print(n,"is Not Prime")
elif ch==8:
n = int(input("Enter N: "))
if ispalindrome(n)==True:
print(n,"is Palindrome")
else:
print(n,"is Not Palindrome")
elif ch==9:
ans=False
print("-------------------------------------")
input("Press any key.....")
if __name__=="__main__":main()

Example 3) menu3.py

示例3)menu3.py

In this program only few functions of both modules i.e. mycheck.py/mymath.py are get Loaded in menu3.py's memory and child functions can be called directly

在该程序中,两个模块中只有少数几个函数(即mycheck.py/mymath.py)被加载到menu3.py的内存中子函数可以直接调用

from os import system
from mymath import sum,difference
from mycheck import iseven,isprime,ispalindrome
def main():
ans=True
while ans:
system('cls')
print("MENU")
print("--------------------------------------")
print("1.Add")
print("2.Substract")
print("3.Even Check")
print("4.Prime Check")
print("5.Palindrome Check")
print("6.Exit")
print("-------------------------------------")
ch=int(input("Enter choice(1-6):"))
print("-------------------------------------")
if ch==1:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = sum(a,b)
print("Sum    :",c)
elif ch==2:
a = int(input("Enter A: "))
b = int(input("Enter B: "))
c = difference(a,b)
print("difference    :",c)
elif ch==3:
n = int(input("Enter N: "))
if iseven(n)==True:
print(n,"is Even")
else:
print(n,"is Not Even")
elif ch==4:
n = int(input("Enter N: "))
if isprime(n)==True:
print(n,"is Prime")
else:
print(n,"is Not Prime")
elif ch==5:
n = int(input("Enter N: "))
if ispalindrome(n)==True:
print(n,"is Palindrome")
else:
print(n,"is Not Palindrome")
elif ch==6:
ans=False
print("-------------------------------------")
input("Press any key.....")
if __name__=="__main__":main()

Download all files

下载所有文件

翻译自: https://www.includehelp.com/python/modules-with-examples.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544375.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

WPF入门教程系列十五——WPF中的数据绑定(一)

使用Windows Presentation Foundation (WPF) 可以很方便的设计出强大的用户界面,同时 WPF提供了数据绑定功能。WPF的数据绑定跟Winform与ASP.NET中的数据绑定功能类似,但也有所不同,在 WPF中以通过后台代码绑定、前台XAML中进行绑定&#xff…

实战,实现幂等的8种方案!

前言 大家好,我是程序员田螺。今天我们一起来聊聊幂等设计。什么是幂等为什么需要幂等接口超时,如何处理呢?如何设计幂等?实现幂等的8种方案HTTP的幂等1. 什么是幂等? 幂等是一个数学与计算机科学概念。在数学中,幂等…

灰度共生矩阵及其数字特征_数字系统及其表示

灰度共生矩阵及其数字特征Any number system has a set of symbols known as Digits with some rules performing arithmetic operations. A collection of these makes a number has two parts. They are integer portion and fraction portion. These portions are separated…

绝绝子,画框架图就用这个工具

前言看过我以往文章的小伙伴可能会发现,我的大部分文章都有很多配图。我的文章风格是图文相结合,更便于大家理解。最近有很多小伙伴发私信问我:文章中的图是用什么工具画的。他们觉得我画的图风格挺小清新的,能够让人眼前一亮。先…

Linux解析内核源代码——传输控制块诞生

原创文章是freas_1990,转载请注明出处:http://blog.csdn.net/freas_1990/article/details/23795587 在Linux 2.6一旦(不包含2.6,对于更详细的调查是不是版本号),控制块的概念,各种协议的状态管理…

面试官:this和super有什么区别?this能调用到父类吗?

作者:磊哥来源 | Java面试真题解析(ID:aimianshi666)转载请联系授权(微信ID:GG_Stone)本文已收录《Java常见面试题》:https://gitee.com/mydb/interviewthis 和 super 都是 Java 中常…

scala中map添加值_如何在Scala Map中反转键和值

scala中map添加值A Map is a data structure that stores data as key: value pair. 映射是一种将数据存储为键:值对的数据结构。 Syntax: 句法: Map(key->value, key->value)反转地图中的键和值 (Reversing Keys and values in Map) Here, we w…

在 Exchange 服务器上的操作系统中的防病毒软件

本主题介绍文件级防病毒程序对运行 Microsoft Exchange Server 2013 的计算机的影响。如果按照本主题中所述的建议操作,可以帮助提高 Exchange 组织的安全性并改善运行状况。文件级扫描程序经常使用。但是,如果配置不正确,可能会导致 Exchang…

SpringBoot 热部署神器快速重启的秘密!

今天咱们来聊聊这个热部署神器 spring-boot-devtools 的运行原理,看看它是怎么用这个 ClassLoader 来实现快速重启,帮我们节省时间的!😝文章概要文章的主旋律如下👇spring.factories我们直接打开 spring-boot-devtool…

计算机操作系统 内存_计算机内存的类型| 操作系统

计算机操作系统 内存什么是记忆? (What is Memory?) The essential component of the computer is its Memory. It is assembled on the motherboard as it is a storage device used for storing data and instructions for performing a task on the system. 计算…

关于 java 实现 语音朗读

最近有个java项目要实现 一个 java语音朗读的功能,百度了半天 没有现成的 。也是一头雾水。没具体思路。。。。。大体上总结了下网上的资料 1.java 实现起来 比c或者vb 能麻烦点,或者是这个功能用其他语言完成 然后整合到java 项目里面去!2.…

查询MySQL字段注释的 5 种方法!

作者 | 磊哥来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)很多场景下,我们需要查看 MySQL 中表注释,或者是某张表下所有字段的注释,所以本文就来盘…

聊聊索引失效的10种场景,太坑了

前言今天我接着上一期数据库的话题,更进一步聊聊索引的相关问题,因为索引是大家都比较关心的公共话题,确实有很多坑。不知道你在实际工作中,有没有遇到过下面的这两种情况:明明在某个字段上加了索引,但实际…

python insert_Python列表| 带示例的insert()方法

python insertlist.insert()方法 (list.insert() Method) insert() is an inbuilt method in python, which is used to add an element /item at specified index to the list. insert()是python中的内置方法,用于将指定索引处的元素/ item添加到列表中。 insert(…

Java中的main方法

2019独角兽企业重金招聘Python工程师标准>>> 在一个Java应用程序中,通常程序的入口是一个main方法,它被声明为公有静态方法,参数是一个字符串数组,返回值为Void类型。这个方法有许多值得研究的地方,今天就来…

约瑟夫环问题(C++)

问题描述 首先,说明一下这个问题是研究生期间c课的综合作业,本来有好多选择但最后还是选择了约瑟夫环问题。下面是约瑟夫环的问题描述以及设计要求: 约瑟夫环(约瑟夫问题)是一个数学的应用问题:已知n个人&…

实战!工作中常用到哪些设计模式

前言 大家好,我是捡田螺的小男孩。平时我们写代码呢,多数情况都是流水线式写代码,基本就可以实现业务逻辑了。如何在写代码中找到乐趣呢,我觉得,最好的方式就是:使用设计模式优化自己的业务代码。今天跟大家…

什么是bcd码数据传输通讯_传输障碍| 数据通讯

什么是bcd码数据传输通讯传输障碍 (Transmission Impairment) In the data communication system, analog and digital signals go through the transmission medium. Transmission media are not ideal. There are some imperfections in transmission mediums. So, the signa…

Spring boot项目(问答网站)之timeline的推拉两种模式

Timeline介绍 所谓timeline就是当用户打开主页看到的随着时间轴发生的一系列时间的整合,主要包含: 关注用户的最新动态热门推荐广告推荐整合等等. 推、拉模式 推模式: 当一个用户关注了或者评论了一个问题或用户,触发事件&…

Bean放入Spring容器,你知道几种方式?

作者:三尺微命 一介书生来源:blog.csdn.net/weixin_43741092/article/details/120176466我们知道平时在开发中使用Spring的时候,都是将对象交由Spring去管理,那么将一个对象加入到Spring容器中,有哪些方式呢&#xff…