我是新鲜的,可以与我的方案挂钩,并有一个问题。 我必须从档案中获取销售信息,并以某种格式印刷。 这是法典:
#Looping program to read file per line
for line in lines:
# Formatting line to read later
line = line.strip().split( , )
year = line[0]
year = int(year)
month = line[1]
month = int(month)
day = line[2]
day = int(day)
linePoint = date(year, month, day)
cost = line[3]
cost = float(cost)
#Finding the lines within the start and end date
if (linePoint >= startDate) and (linePoint <= endDate):
printcost = (cost / 100)
printcost = int(printcost)
print "%s.%s.%s" % (startYear, startMonth, startDay)
print "0%s:" % printNum, "*" * printcost
newcost = newcost + cost
printNum += 1
When I use the %s.%s.%s
it s printing the date above the sales, I want it to print that above the other print statement once per month, and be able to increase it once the month is up.
Also in the print "0%s:" % printNum, "*" * printcost
statement I would like it to only print the zero for the first nine days.
从根本上讲,我的问题是,斯图尔如何在我操作一定次数的时间,但时间数取决于用户,并与日期相挂钩,因此,计算机需要能够识别日期。 含糊不清。