51dev.com IT技术开发者社区

51dev.com 技术开发者社区

python输出日期时间

python输出日期时间

 importdatetimebase=datetime.datetime.today()forxinrange(0,5):print(base+datetime.timedelta(days=x)) ...

django urlencode

django urlencode

 fromdjango.utils.httpimporturlquotea=urlquote('分享')print(a) ...

python 获取5天前的日期

python 获取5天前的日期

 fromdatetimeimportdate,timedeltadt=date.today()-timedelta(5)print('CurrentDate:',date.today())print('5daysbeforeCurrentDate:',dt) ...

python 列表的递归求和

python 列表的递归求和

 deflist_sum(num_List):iflen(num_List)==1:returnnum_List[0]else:returnnum_List[0]+list_sum(num_List[1:])print(list_sum([2,4,5,6,7])) ...

js urlencode

js urlencode

 <!doctypehtml><htmllang="en"><head><metacharset="UTF-8"><metaname="Generator"content="EditPlus®"><metaname=...

python 返回列表中的偶数

python 返回列表中的偶数

 defis_even_num(l):enum=[]forninl:ifn%2==0:enum.append(n)returnenumprint(is_even_num([1,2,3,4,5,6,7,8,9])) ...

python 执行字符串中的python代码

python 执行字符串中的python代码

 mycode='print("helloworld")'code="""defmutiply(x,y):returnx*yprint('Multiplyof2and3is:',mutiply(2,3))"""exec(mycode)exec(code) ...

python 字符串的反转

python 字符串的反转

 defstring_reverse(str1):rstr1=''index=len(str1)whileindex>0:rstr1+=str1[index-1]index=index-1returnrstr1print(string_reverse('1234abcd'))&nbs...

python 列表求和

python 列表求和

 defsum_list(items):sum_numbers=0forxinitems:sum_numbers+=xreturnsum_numbersprint(sum_list([1,2,-8])) ...

python 列表元素统计出现的次数并输出字典

python 列表元素统计出现的次数并输出字典

 importcollectionsmy_list=[10,10,10,10,20,20,20,20,40,40,50,50,30]print("OriginalList:",my_list)ctr=collections.Counter(my_list)print("Frequencyo...

python 列表元素的筛选

python 列表元素的筛选

 color=['Red','Green','White','Black','Pink','Yellow']color=[xfor(i,x)inenumerate(color)ifinotin(0,4,5)]print(color) ...

shell 变量赋值运算

shell 变量赋值运算

 1.变量赋值:name=lbg等号前后不能有空格name="LebronJames"变量值中有空格要用双引号echo${name}用${}更保险shopt-s-onounset设置“先声明再使用”2.取消变量:unset释放变量和函数的内存3.位置参数:${n}:...

python 输出所有列表元素的乘积

python 输出所有列表元素的乘积

 defmultiply_list(items):tot=1forxinitems:tot*=xreturntotprint(multiply_list([1,2,-8]))  ...

shell 判断变量是否为空

shell 判断变量是否为空

 一句话判断[!$a]&&echo"aisnull" 1.判断变量read-p"inputaword:"wordif[!-n"$word"];thenecho"youhavenotinputaword!"elseecho"thewordyouinputis$wor...

js 获取地址栏域名以及URL

js 获取地址栏域名以及URL

 console.log(window.location.host)console.log(document.domain)console.log(window.location.href)console.log(window.domain) 地址栏:  输出...