当前位置: 首页 > news >正文

哪个网站有代做课设的宁波seo服务快速推广

哪个网站有代做课设的,宁波seo服务快速推广,微网站免费开发平台,公司做网站一般多少钱计算器 创建一个简单的计算器,能够进行加、减、乘、除四种基本运算。 # 定义加法函数 def add(x, y):return x y# 定义减法函数 def subtract(x, y):return x - y# 定义乘法函数 def multiply(x, y):return x * y# 定义除法函数 def divide(x, y):if y 0:return…

计算器

创建一个简单的计算器,能够进行加、减、乘、除四种基本运算。

# 定义加法函数
def add(x, y):return x + y# 定义减法函数
def subtract(x, y):return x - y# 定义乘法函数
def multiply(x, y):return x * y# 定义除法函数
def divide(x, y):if y == 0:return "Error! Division by zero."  # 防止除以零return x / y# 打印操作选项
print("Select operation:")
print("1. Add")
print("2. Subtract")
print("3. Multiply")
print("4. Divide")# 获取用户选择的操作
choice = input("Enter choice(1/2/3/4): ")# 获取用户输入的两个数字
num1 = float(input("Enter first number: "))
num2 = float(input("Enter second number: "))# 根据用户选择的操作调用相应的函数
if choice == '1':print(f"{num1} + {num2} = {add(num1, num2)}")
elif choice == '2':print(f"{num1} - {num2} = {subtract(num1, num2)}")
elif choice == '3':print(f"{num1} * {num2} = {multiply(num1, num2)}")
elif choice == '4':print(f"{num1} / {num2} = {divide(num1, num2)}")
else:print("Invalid input")  # 处理无效输入

猜数字游戏

编写一个猜数字游戏,计算机随机生成一个1到100之间的数字,用户需要猜这个数字,程序会提示猜大了还是猜小了,直到猜对为止。

import random  # 导入随机数模块# 生成一个1到100之间的随机数
number_to_guess = random.randint(1, 100)
attempts = 0  # 初始化尝试次数print("Guess the number between 1 and 100")while True:guess = int(input("Enter your guess: "))  # 获取用户猜测的数字attempts += 1  # 尝试次数加一if guess < number_to_guess:print("Too low!")  # 提示猜的数字太小elif guess > number_to_guess:print("Too high!")  # 提示猜的数字太大else:print(f"Congratulations! You've guessed the number in {attempts} attempts.")  # 猜对了break  # 结束循环

简单的记事本

创建一个简单的记事本应用,用户可以添加、查看和删除笔记。

notes = []  # 初始化一个空列表来存储笔记# 添加笔记的函数
def add_note():note = input("Enter your note: ")notes.append(note)print("Note added!")# 查看所有笔记的函数
def view_notes():print("Your notes:")for i, note in enumerate(notes, 1):print(f"{i}. {note}")# 删除笔记的函数
def delete_note():view_notes()  # 先显示所有笔记note_index = int(input("Enter the note number to delete: ")) - 1if 0 <= note_index < len(notes):del notes[note_index]print("Note deleted!")else:print("Invalid note number")  # 处理无效输入# 主循环
while True:print("\n1. Add Note")print("2. View Notes")print("3. Delete Note")print("4. Exit")choice = input("Enter your choice: ")if choice == '1':add_note()elif choice == '2':view_notes()elif choice == '3':delete_note()elif choice == '4':break  # 退出循环else:print("Invalid choice. Please try again.")  # 处理无效选择

简单的联系人管理系统

创建一个简单的联系人管理系统,可以添加、查看、删除联系人。

contacts = {}  # 初始化一个空字典来存储联系人# 添加联系人的函数
def add_contact():name = input("Enter contact name: ")phone = input("Enter contact phone number: ")contacts[name] = phoneprint("Contact added!")# 查看所有联系人的函数
def view_contacts():print("Your contacts:")for name, phone in contacts.items():print(f"Name: {name}, Phone: {phone}")# 删除联系人的函数
def delete_contact():name = input("Enter the name of the contact to delete: ")if name in contacts:del contacts[name]print("Contact deleted!")else:print("Contact not found")  # 处理联系人未找到的情况# 主循环
while True:print("\n1. Add Contact")print("2. View Contacts")print("3. Delete Contact")print("4. Exit")choice = input("Enter your choice: ")if choice == '1':add_contact()elif choice == '2':view_contacts()elif choice == '3':delete_contact()elif choice == '4':break  # 退出循环else:print("Invalid choice. Please try again.")  # 处理无效选择

简单的待办事项列表

创建一个简单的待办事项列表应用,可以添加、查看和删除待办事项。

todo_list = []  # 初始化一个空列表来存储待办事项# 添加任务的函数
def add_task():task = input("Enter a new task: ")todo_list.append(task)print("Task added!")# 查看所有任务的函数
def view_tasks():print("Your tasks:")for i, task in enumerate(todo_list, 1):print(f"{i}. {task}")# 删除任务的函数
def delete_task():view_tasks()  # 先显示所有任务task_index = int(input("Enter the task number to delete: ")) - 1if 0 <= task_index < len(todo_list):del todo_list[task_index]print("Task deleted!")else:print("Invalid task number")  # 处理无效输入# 主循环
while True:print("\n1. Add Task")print("2. View Tasks")print("3. Delete Task")print("4. Exit")choice = input("Enter your choice: ")if choice == '1':add_task()elif choice == '2':view_tasks()elif choice == '3':delete_task()elif choice == '4':break  # 退出循环else:print("Invalid choice. Please try again.")  # 处理无效选择
http://www.sczhlp.com/news/23590/

相关文章:

  • 政府举办网站开发常见的网络营销方法
  • 网站建设 英汇网络小红书软文推广
  • 郑州网站优化渠道推广软文发布平台
  • 大语言模型驱动的机器学习可解释性框架
  • 微软紧急发布IE浏览器带外安全更新修复关键漏洞
  • 别人帮做的网站怎么修改百度seo简爱
  • 聊城做网站最好的网络公司广告软文代理平台
  • 制作ppt的软件叫啥旺道seo推广效果怎么样
  • 模具机械设备东莞网站建设推广策划书模板范文
  • 如何做vip视频网站今天重大新闻头条新闻军事
  • bootstrap 网站开发最新的即时比分
  • 高校网站群管理系统百度收录批量查询工具
  • asp.net 网站开发 教程优化大师电视版
  • 爱站网关键字查询百度网站收录提交入口全攻略
  • 做论坛推广的网站如何做网站推广广告
  • 我想做教育网站那里做厦门百度广告开户
  • 外包做网站的要求怎么写竞价推广工具
  • 一般做网站什么价格怎么做网络推广优化
  • 太原免费网站建设app推广接单平台
  • 正规的培训行业网站制作百度有免费推广广告
  • 深圳做网站龙华新科广州seo服务外包
  • 导购 网站模板百度推广后台登陆首页
  • 中国建设银行贵州省分行网站如何让自己的网站快速被百度收录
  • html怎么做网站东莞做网站哪家好
  • 凡科网站产品导航怎么做seo专业培训seo专业培训
  • 中国域名网官网查询厦门谷歌seo公司
  • vue做普通网站页面跳转刷关键词排名
  • 网站信息批量查询工具新媒体推广渠道有哪些
  • 广东网站备案北京网站优化排名
  • 利用网络媒体营销来做电商网站论文镇江网站建设