发表评论取消回复
相关阅读
相关 python编程---example27
分子运动 import matplotlib.pyplot as plt from random_walk import RandomWa...
相关 python编程---example24
客: 编写一个程序,提示用户输入其名字;用户作出响应后,将其名字写入到guest.txt文件中。 filename = 'guest.txt' ...
相关 python编程---example23
filename = '../learning_python.txt' with open(filename) as f: lines ...
相关 python编程---example22
filename = 'learning_python.txt' print("--- Reading in the entire file:")...
相关 python编程---example18
使用OrderDict类来重写这个程序,并确认输出的顺序与你在字典中添加键-值对的顺序一致。 from collections import OrderedD...
相关 python编程---example16
这个例子是关于python module调用的,python module是 .py 的文件 pizza.py def make_pizza(s...
相关 python编程---example13
一个楼梯,总共有10级台阶,每次只能走一级或者两级台阶,全部走完,有多少种走法? def climb_stairs(n): if n==1: ...
相关 python编程---example10
定两个按升序排列的有序数组,将它们合并成一个新的有序数组。 def merge_sorted_array(a,b): c = [] i,j ...
相关 python编程---example9
定一个字符串,找出没有重复字符的最长的子串。 def longest_substr(s): dic = {} start,maxlen,s...
相关 python编程---example4
one alien_o = {'color':'green','points':5} new_points = alien_o['points...
还没有评论,来说两句吧...