搜索结果
查询Tags标签: input,共有 1530条记录-
基于python的学生信息管理系统
基于python的学生信息管理系统 源码 """Welcome to PythonLife is short , You need python author: MX_INFOversion: 1.0 """ import os #文件路径 filename="student.txt" #主菜单 def mainMenu():while True:menu()choice=i…
2021/7/16 22:06:42 人评论 次浏览 -
DAY 157 关于centos防火墙问题
Fix “Unit iptables.service failed to load: No such file or directory” Error In CentOS7 最近在升级CentOS7遇到问题 systemctl restart iptables.service Failed to issue method call: Unit iptables.service failed to load: No such file or directory. iptable…
2021/7/15 7:07:52 人评论 次浏览 -
DAY 157 关于centos防火墙问题
Fix “Unit iptables.service failed to load: No such file or directory” Error In CentOS7 最近在升级CentOS7遇到问题 systemctl restart iptables.service Failed to issue method call: Unit iptables.service failed to load: No such file or directory. iptable…
2021/7/15 7:07:52 人评论 次浏览 -
python中input函数 、常用运算符、运算符的优先级
python中的输入函数input() input()函数的介绍 (1)作用:接受来自用户的输入 (2)返回值类型:输入值的类型为str (3)值的存储:使用=对输入的值进行存储 #输入函数input present = input("你喜欢看什么电影") print(present,type(present))python中的…
2021/7/14 22:07:08 人评论 次浏览 -
python中input函数 、常用运算符、运算符的优先级
python中的输入函数input() input()函数的介绍 (1)作用:接受来自用户的输入 (2)返回值类型:输入值的类型为str (3)值的存储:使用=对输入的值进行存储 #输入函数input present = input("你喜欢看什么电影") print(present,type(present))python中的…
2021/7/14 22:07:08 人评论 次浏览 -
Data7.12十六进制转八进制
问题描述 给定n个十六进制正整数,输出她们对应的八进制数。输入格式输入的第一行为一个正整数n(1<=n<=10) 接下来的n行,每行一由0-9,大写字母A-F组成的字符串,表示要装换的十六进制正整数,每个十六进制数长度不超过10000;输出格式输出n行,每行为输入对应的八…
2021/7/14 6:06:37 人评论 次浏览 -
Data7.12十六进制转八进制
问题描述 给定n个十六进制正整数,输出她们对应的八进制数。输入格式输入的第一行为一个正整数n(1<=n<=10) 接下来的n行,每行一由0-9,大写字母A-F组成的字符串,表示要装换的十六进制正整数,每个十六进制数长度不超过10000;输出格式输出n行,每行为输入对应的八…
2021/7/14 6:06:37 人评论 次浏览 -
给c++写python的split()与input()【python一样写c++、一】
python的split确实是很香的功能。 写c++的时候,就会想着,要是能直接input().split()那不挺好。 实际上真的可以:自己动手,丰衣足食。 先放成品展示。 int main(){auto k=input().split();//k的类型是vector<string>cout<<k<<endl; }完整代码在文章末…
2021/7/14 1:34:46 人评论 次浏览 -
给c++写python的split()与input()【python一样写c++、一】
python的split确实是很香的功能。 写c++的时候,就会想着,要是能直接input().split()那不挺好。 实际上真的可以:自己动手,丰衣足食。 先放成品展示。 int main(){auto k=input().split();//k的类型是vector<string>cout<<k<<endl; }完整代码在文章末…
2021/7/14 1:34:46 人评论 次浏览 -
分批查询数据库数据存入文件
------------恢复内容开始------------ 来自https://blog.csdn.net/sinat_36190649/article/details/107941638,根据需求略做修改import pymysql import pandas as pd import gc import time import threadingclass Sql_df(object):def __init__(self,input_db):self.hos…
2021/7/13 19:11:48 人评论 次浏览 -
分批查询数据库数据存入文件
------------恢复内容开始------------ 来自https://blog.csdn.net/sinat_36190649/article/details/107941638,根据需求略做修改import pymysql import pandas as pd import gc import time import threadingclass Sql_df(object):def __init__(self,input_db):self.hos…
2021/7/13 19:11:48 人评论 次浏览 -
找到休息日
import java.util.Calendar; import java.util.Scanner;public class Demo1 {public static void main(String[] args) {System.out.println("请输入年:");Scanner input = new Scanner(System.in);int year = input.nextInt();System.out.println("请输入…
2021/7/12 6:08:57 人评论 次浏览 -
找到休息日
import java.util.Calendar; import java.util.Scanner;public class Demo1 {public static void main(String[] args) {System.out.println("请输入年:");Scanner input = new Scanner(System.in);int year = input.nextInt();System.out.println("请输入…
2021/7/12 6:08:57 人评论 次浏览 -
Keras开发基础
Keras神经网络基础 Time:2021-06-22 前言 在结束了对一些基础概念的理解,终于开始了真正学习使用API接口搭建模型进行神经网络训练了。 keras 官方文档:Keras: the Python deep learning API Author:雾雨霜星 欢迎来我的个人网站进行学习: https://www.shuangxing.to…
2021/7/11 23:37:45 人评论 次浏览 -
Keras开发基础
Keras神经网络基础 Time:2021-06-22 前言 在结束了对一些基础概念的理解,终于开始了真正学习使用API接口搭建模型进行神经网络训练了。 keras 官方文档:Keras: the Python deep learning API Author:雾雨霜星 欢迎来我的个人网站进行学习: https://www.shuangxing.to…
2021/7/11 23:37:45 人评论 次浏览