码迷,mamicode.com
首页 >  
搜索关键字:append    ( 6727个结果
素数的个数
num = int(input('输入任意的数值:'))list_sum=0list_num=[]for i in range(2,num): for j in range(2,i): if i%j==0: break else: list_num.append(i) list_sum += i p ...
分类:其他好文   时间:2020-12-10 11:29:43    阅读次数:4
22. 括号生成 Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. Input: n = 3Output: ["((()))","(()())","(())() ...
分类:其他好文   时间:2020-12-10 11:12:34    阅读次数:5
《Redis实战》-Josiah L.Carlson 的python的源代码翻译成C# 第三章
using AIStudio.ConSole.Redis.Ch01; using System; using System.Collections.Generic; using System.Threading; namespace AIStudio.ConSole.Redis.Ch03 { cla ...
分类:编程语言   时间:2020-12-09 12:23:49    阅读次数:6
第2章 HTML中的JavaScript
1. script标签 <script>标签的type属性值如果是module,代码会被当成ES6模块,只有在这个时候代码中才能出现import和export关键字 无论是内嵌JS代码还是外联JS代码,在代码被计算完成之前,页面剩余的内容不会被加载,即<script>会造成页面阻塞(阻塞时间包含下载 ...
分类:编程语言   时间:2020-12-05 10:44:20    阅读次数:7
四则运算
import randomimport mathimport fractionsq=[]ans=[]def c1(q,ans) symble = random.choice(['+','-','*','/']) if symble == '+': n1 = random.randint(0,20) ...
分类:其他好文   时间:2020-12-04 10:49:38    阅读次数:6
小学四则运算编程实践
1 import random#导入随机库 2 from fractions import Fraction#导入分数运算 3 ##整数运算 4 def c1(q, ans): 5 operator = random.choice(['+', '-', '*', '/']) # 生成运算符 6 if ...
分类:其他好文   时间:2020-12-03 12:26:32    阅读次数:16
小学四则运算
代码如下: import random #四则运算 def t(): sym = ['+', '-', '×', '÷'] f= random.randint(0, 3) n1 = random.randint(1, 20) n2 = random.randint(1, 20) result = 0 ...
分类:其他好文   时间:2020-12-03 12:25:51    阅读次数:10
在python中元组与列表的区别及序列解包
一、 元组与列表的区别 元组中的数据一旦定义就不允许更改。 元组没有append()、extend()和insert()等方法,无法向元组中添加元素。 元组没有remove()或pop()方法,也无法对元组元素进行del操作,不能从元组中删除元素。 从效果上看,tuple()冻结列表,而list() ...
分类:编程语言   时间:2020-12-03 11:30:27    阅读次数:7
二、推导式/自省
一、列表推导式 如何生成一个[data0、data1、data2.....data99]的列表?? 循环方法: list1=[] for i in range(100): list1.append('data{}'.format(i)) print("list1的值为:",list1) 用列表推导式 ...
分类:其他好文   时间:2020-12-01 12:25:48    阅读次数:7
Python语言
###Python之禅 import this ###常用计算 a ** 2 # 乘方计算 a % 2 # 求模 a // 2 # 求商 ###字符串 name = 'ross geller' name.title() # 单词首字母大写 name.upper() # 字符全大写 name.lowe ...
分类:编程语言   时间:2020-12-01 12:01:46    阅读次数:5
6727条   上一页 1 ... 10 11 12 13 14 ... 673 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!