E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Homework
python_day10_
homework
1.编写函数,求1+2+3+…N的和.defsum1(n):'''说明:求1+2+3+…n的和'''num=0foriinrange(n+1):num+=ireturnnumprint(sum1(3))#62.编写一个函数,求多个数中的最大值defmax1(*args,**kwargs):'''说明:求最大值'''max_num=0foritem1inargs:ifitem1>max_num:ma
Z_JoonGi
·
2021-06-22 01:12
09-26
Less
homework
andmorefeedbackwouldhelp.2)结合自己的生活、学习、工作、兴趣等,先想象在什么语境下会用到这个表达,然后再进行造句。场景:太过疲倦怎么办?
曾小雪
·
2021-06-21 08:34
[SSC] U1L3
Homework
•目标词汇:classroom,playground,bathroom,cafeteria,gym,study,play,use,eatabove,infrontof,behind,nextto,between•目标句型:'He/Sheisin/atthe(place).'例:Heisintheclassroom.Roddyisinthecafeteria'I(action)in/atthe(pl
TimmySHENX
·
2021-06-21 02:12
day10_
homework
1.编写函数,求1+2+3+…N的和defmy_sum(n):res=0foriinrange(1,n+1):res+=ireturnres2.编写一个函数,求多个数中的最大值defmy_max(nums):res=nums[0]foriinnums[1:]:ifresdict1={1:'a',2:'b',3:'c'}defexchange_dict(dict_r):dict_key=[]dict
不语sun
·
2021-06-20 23:04
调试Matlab作业、Matlab语言程序帮写、代做Matlab实验作业、Matlab编程代写
DIP
Homework
3Due:December23,20181Satelliteimagescanbedegradedbyatmosphericturbulence,whichwetrytomodelaslinear
uifrx77
·
2021-06-19 22:29
W4111 -- Introduction to Databases
W4111--IntroductiontoDatabases
Homework
3Spring2019,Sections03,V03,H03IntroductionThisisthespecificationoffor
homework
3forW4111
·
2021-06-19 18:23
vue.js
W4111 -- Introduction to Databases
W4111--IntroductiontoDatabases
Homework
3Spring2019,Sections03,V03,H03IntroductionThisisthespecificationoffor
homework
3forW4111
·
2021-06-19 18:39
vue.js
Day8
Less
homework
andmorefeedbackwouldhelp.倾诉不能解决麻烦,但是会有帮助Gettingproblemoffyourchestcan'tsolveit,butithelps
微笑_5ad6
·
2021-06-19 14:23
CMDA 3634 SP2019 Image Statistics图像讲解
CMDA3634SP2019ImageStatisticsandDistributingData
Homework
03
Homework
03:ImageStatisticsandDistributingDataPoints
·
2021-06-19 13:58
python
CMDA 3634 SP2019 Image Statistics图像讲解
CMDA3634SP2019ImageStatisticsandDistributingData
Homework
03
Homework
03:ImageStatisticsandDistributingDataPoints
·
2021-06-19 13:49
python
April 19th_day05_
homework
question9.输出9*9口诀。1.程序分析:分行与列考虑,共9行9列,i控制行,j控制列。i=9#乘法表大小forxinrange(1,i+1):foryinrange(1,x+1):print("%d×%d=%d"%(y,x,x*y),end="")ifx*y<10:print("",end="")print("")print("\n"*2)"""1×1=11×2=22×2=41×3=32
3ae1c50960af
·
2021-06-19 06:23
2020-3-18午间日记
最近
homework
有点多,所以没好好点赞,等闲下来看到就会点赞哈哈哈,等周末我强势回归哈哈哈哈,wa
一只羊咩咩i
·
2021-06-19 01:26
CSC415 Command Line Arguments
CSC415-Assignment-1Assignment1–CommandLineArgumentsWelcometoyourFirst
homework
assignment.Letmesetsomeoftheexpectations.Codeshouldbeneat
·
2021-06-18 22:58
git
每日一词 help
Less
homework
andmorefeedbackwouldhelp.造句:A:YesterdaymymomweremadatmebecauseIdidn'tfinishmy
homework
.Ican'thelpbuttalkingbacktoher.B
邱火火儿
·
2021-06-16 11:03
Day14—类与对象
homework
1.声明⼀个电脑类:属性:品牌、颜⾊、内存⼤小方法:打游戏、写代码、看视频a.创建电脑类的对象,然后通过对象点的⽅方式获取、修改、添加和删除它的属性b.通过attr相关方法去获取、修改、添加和删除它的属性classComputer:"""电脑类"""def__init__(self,brand,colour,memory_size):self.brand=brandself.colour=colo
Error_2d57
·
2021-06-15 11:07
css-
homework
1
Lists,TablesandForms*{margin:0;padding:0;/*border:1pxsolid#000000;*/}body{background-color:#F8F8F8;margin-left:10px;}p{margin-top:20px;margin-bottom:20px;}ul{list-style-image:url(img/icon-plus.png);ma
oct___越来越2
·
2021-06-15 04:12
面向对象2-
homework
建立一个汽车类Auto,包括轮胎个数,汽车颜色,车身重量,速度等属性,并通过不同的构造方法创建实例。至少要求汽车能够加速减速停车。再定义一个小汽车类CarAuto继承Auto并添加空调、CD属性,并且重新实现方法覆盖加速、减速的方法importtimeclassAuto:def__init__(self,number,color,weigth,rate):ifnumber==4ornumber==
_小孩子
·
2021-06-15 02:56
Java计算器的制作与完善
代码:packagecom.neusoft.
homework
;importjava.util.Scanner;publicclass
Homework
1{publicstaticvoidmain(String
Kayson_
·
2021-06-14 21:14
Week1_Practice2
frombs4importBeautifulSoupwithopen('D:\\Python\\crawler\\网易云课堂作业\\第一周作业\\1_2\\1_2_
homework
_required\\
Mark狡
·
2021-06-13 21:31
每日一词08
1.翻译:Less
homework
andmorefeedbackwouldhelp.2.场景:良好的关系有益.翻译:Goodrelationshipwouldhelp.
bryane3124
·
2021-06-13 17:54
XML file作业代写、XQuery query作业代做、代写SQL课程设计作业、SQL编程作业调试代做数据库SQL|代做R语言编程
Homework
41.Considerthefollowingrelationaldata:Products:pidNamePriceDescription-----------------------
yanliali
·
2021-06-13 15:28
调试Matlab作业、Matlab语言程序帮写、代做Matlab实验作业、Matlab编程代写
DIP
Homework
3Due:December23,20181Satelliteimagescanbedegradedbyatmosphericturbulence,whichwetrytomodelaslinear
zhachunai
·
2021-06-13 15:16
代写INF 552作业、代写MFCCs留学生作业、代做Python实验作业、代做Java/c++语言作业代做留学生Processing|代做数据库SQL
Homework
5INF552,1.Multi-classandMulti-LabelClassificationUsingSupportVectorMachines(a)DownloadtheAnuranCalls
kediezhi
·
2021-06-12 09:23
Java代写 CSCI-A 343 :
Homework
02调试Java作业
IntroductionJava的数据结构算法,需要完成算法分析,算法实现,2D数组的实现,最后上传到githubRequirement6/24/16,22:15
Homework
02-CSCI-A343DataStructures-Summer2016Page1of2CSCIC343
luohuiyi
·
2021-06-11 20:20
[HFI] U4L2
Homework
本次上课内容:HFIU4L2本次作业:红色练习册:TutorialWorkbook-P38.
Homework
2网络练习:parents.ef.cnOnline-Vocabulary1:Matchthewordstocompletethephrases.Online-Reading1
TimmySHENX
·
2021-06-11 14:37
day17
homework
写一个正则表达式判断一个字符串是否是ip地址规则:一个ip地址由4个数字组成,每个数字之间用.连接。每个数字的大小是0-255255.189.10.37正确256.189.89.9错误importrefromreimport*deffunc():whileTrue:ip1=input('请输入ip地址:')re_str=r'((([1-9][0-9])|[0-9]|([1][0-9][0-9])|
0228bb2f7b74
·
2021-06-11 09:19
王兆盟
homework
6
本次作业要求用PDO模板实现IMode中的四个方法,并且用参数绑定的方法防止sql注入。";$dbh=null;}catch(PDOException$e){die("错误:".$e->getMessage()."");}interfaceiModel{publicfunctionselect(string$statements,array$params=[]);publicfunctionupd
王小邪_afdd
·
2021-06-10 13:56
面向对象1-
Homework
1.声明⼀个电脑类:属性:品牌、颜⾊、内存⼤小方法:打游戏、写代码、看视频a.创建电脑类的对象,然后通过对象点的⽅方式获取、修改、添加和删除它的属性b.通过attr相关⽅方法去获取、修改、添加和删除它的属性classComputer:__slots__=('brand','color','memory','size')def__init__(self,brand,color,memory):sel
_小孩子
·
2021-06-09 23:09
正则表达式—
homework
写一个正则表达式判断一个字符串是否是ip地址规则:一个ip地址由4个数字组成,每个数字之间用.连接。每个数字的大小是0-255255.189.10.37正确256.189.89.9错误fromreimport*re_ip=r'((2[0-5][0-5])|(1[0-9][0-9])|([1-9][0-9])|([1-9]))\.((2[0-5][0-5])|(1[0-9][0-9])|([1-9]
_小孩子
·
2021-06-09 21:20
代写STA 141A作业、代做R课程设计作业、代写R实验作业、Canvas课程作业代做代做留学生Processing|帮做Haskell程序
STA141A,
Homework
2DueApril30th2019(by8am)Name:StudentID:Section:Namesofyourstudymates:PleasesubmitonCanvas
niuzongci
·
2021-06-09 11:04
第二阶段 day8
homework
*{margin:0;padding:0;}#adv{width:940px;margin:0auto;}#advul{width:120px;height:30px;margin:0auto
大漠判官1
·
2021-06-09 06:48
MTH 496作业代做、Machine Learning作业代写、代做Python实验作业、Python编程设计作业调试代写Python编程|帮做C/C++编
Homework
3MTH496–MachineLearningDuedate:Mar.27th,2019(1problems/1page)1Programming
Homework
NoteWriteyourcodesinJupyternotebookformat.EachproblemisinaseparatenotebookandsubmitallofthemviaadropboxinD2L.Ma
omy8564
·
2021-06-09 02:30
03-27
homework
importre#1.写一个正则表达式判断一个字符串是否是ip地址#规则:一个ip地址由4个数字组成,每个数字之间用.连接。每个数字的大小是0-255#255.189.10.37正确#256.189.89.9错误#250-255的正则表达式#r1=r'25[0-5]'#250-255#r2=r'2[0-4]\d'#200-249#r3='\b(([01]?\d?\d'#0-199re_str=r'
Ygon杨杨
·
2021-06-08 20:55
[FR5] U1L1
Homework
UnitAimsInClassReadaboutandcomparedifferentstudentclubsLearnaboutseparableandinseparablephrasalverbsLearnhowtoexpressandinquireaboutobligations(orlackofit)Readane-mailandmakeinferencesListentoaconvers
TimmySHENX
·
2021-06-08 06:16
[HFH] U4L3
Homework
本次学习内容:U4L3灰色练习册:Workbook-P50,ActivityA.Lookandwrite.Workbook-P50,ActivityB.Readanddraw.网络练习:parents.ef.cnOnline-Spelling:Listenandtypethewordstocompletethesentences.Online-Listening:Listenandcomplete
TimmySHENX
·
2021-06-08 04:17
讲解:C++
HOMEWORK
3c、c
Testfunction:param:noparameterspre:noparamerespost:printsoutthecontentsoftheskiplist/RequirementCS261:
HOMEWORK
3Due05
zhaichengyi
·
2021-06-08 00:44
He is changing
Accordingtohimself,heisdoing
homework
,doing
homework
,doing
homework
….Oh,mygoodness.Evilwor
IreneZhang
·
2021-06-07 23:35
讲解:CS 560、C/C++、c++、AlgorithmR|Python
CS560,
HOMEWORK
4SOLUTIONSINSTRUCTOR:HOAVUEachquestionisworth25points.Theextracreditquestionisworth10points.Whenyouareaskedtodesignanalgorithm
tansouzu
·
2021-06-06 20:54
从屏幕获取字母
importjava.util.Scanner;class
HomeWork
{publicstaticvoidmain(String[]args){/*封装一个函数,来判断一个字符是否是数字字符如果是,返回
腹黑小叶子orz
·
2021-06-06 15:22
2019-08-19 作业
homework
1.html
homework
1一月的节日元旦节1月1日二月的节日情人节2月14日三月的节日妇女节3月8日植树节3月12日国际消费者权益日3月15日四月的节日愚人节4月1日世界卫生日4月7
数番番
·
2021-06-06 06:18
[HFH] U2L3
Homework
本次学习内容:U2L3回家作业:灰色练习册:Workbook-P26,ActivityA.Completethesentences.Workbook-P26,ActivityA.Readandmatch.网络练习:Online-Spelling:Listenandtypethewordstocompletethesentences.Online-Listening:Listenandcomplet
TimmySHENX
·
2021-06-06 00:56
mysql命令小练习(
homework
)
1.向Student表中添加一条记录,id:13,name:孙七生日:2004-06-01性别:女的记录insertintostudentvalues(13,'孙楠楠','2001-11-16','女');2.创建一个教师表teacher,字段为tid(int)tname(varchar)cid(授课课程ID)createtableteacher(tidint(2)notnull,tnamevar
hangnan315
·
2021-06-05 16:08
讲解:COMSW 4111、Databases、SQL、SQLProcessing|Python
HW2-W4111COMSW4111--IntroductiontoDatabases:
Homework
2Specificationv1.1OverviewLearningObjectivesHW2hasthefollowinglearningobjectives
hezhonghong
·
2021-06-05 00:27
socket -
homework
客服端发送功能请求,服务器通过接收的到请求,发送个客服端需要的文字或图片服务器"""__author__=小孩子"""fromsocketimport*fromosimportlistdirfromthreadingimport*classServerThread(Thread):def__init__(self,connect,address):super().__init__()self.co
_小孩子
·
2021-06-04 09:01
2017-10-25
1.我学到的重要概念是topstudentswilldomorethantheassign
homework
.2.我学到的重要单词是approach3.我最喜欢的一句话是Anothertechniqueemployedbytopstudentsistodomorethentheassign
homework
玩的开心哦
·
2021-05-20 22:49
《任务1 HTML核心概念》任务汇总文档
bbs.excellence-girls.org/topic/62完成时间2016-11-23任务要求的作业作业1:https://github.com/tw-lab-roadmap-1/liyan-task1-
homework
1
落花的季节
·
2021-05-20 09:30
[HFG]U3L1
Homework
本次上课内容:HFHU3L3本次作业:灰色练习册:Workbook-P39.CompletethecrosswordusingwordsfromUnit3andthenumbercode.网络练习:parents.ef.cnOnline-Spelling:Listenandtypethewordstocompletethesentences.Online-Listening:Listenandco
TimmySHENX
·
2021-05-19 02:19
2nd article: Stop "quickly"
Startyourdancing
homework
,please.It'salready8o'clock,butnothingdidsinceyoucamebackfromschool...''
Daisy达西
·
2021-05-19 00:24
[SSC] U6L8
Homework
本次学习内容:目标词汇:Drinks:milk,water,tea,coffee,juice,milkshake,hotcocoa,icedtea,cola,thirstyContainers:bottle,cupmug,glass,drink目标句型:'No/Yes,canIhavesome(beverage)please)?''No/Yes,canIhavea(container)of(bev
TimmySHENX
·
2021-05-18 07:40
April 30,2017
hadameetingandarrangedtheworkwithmycoworkers.IwenttoWSEatnoonandstartmy"Englishafternoon".IhadhadonesocialclassandtwoEnglishcorners.Intherest,Ididsome
homework
老蛮腰
·
2021-05-17 21:47
上一页
14
15
16
17
18
19
20
21
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他