发表评论取消回复
相关阅读
相关 python编程---example28
die.py from random import randint class Die(): def __init__...
相关 python编程---example24
客: 编写一个程序,提示用户输入其名字;用户作出响应后,将其名字写入到guest.txt文件中。 filename = 'guest.txt' ...
相关 python编程---example22
filename = 'learning_python.txt' print("--- Reading in the entire file:")...
相关 python编程---example16
这个例子是关于python module调用的,python module是 .py 的文件 pizza.py def make_pizza(s...
相关 python编程---example15
定一个数组和目标数target,找出数组中a,b,c满足 a+b+c = target 的所有组合。 def sum_of_three(arr,target):...
相关 python编程---example12
速排序算法。 def quick_sort(arr,start=0,end=None): if end is None: end = l...
相关 python编程---example11
定一个数组,找出其所有可能的排列。 import numpy as np def permutations(arr): if len(arr)...
相关 python编程---example5
写一个python脚本,输出你想要去的地方。 place = {} active = True while active: ...
相关 python编程---example4
one alien_o = {'color':'green','points':5} new_points = alien_o['points...
相关 python编程---example1
写一个python脚本,猜数字。 import random secretNumber = random.randint(1,20) prin...
还没有评论,来说两句吧...