Python Forum
beginner question about lists and functions
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
beginner question about lists and functions
#4
(Oct-16-2020, 10:56 PM)nhl66pens Wrote: Use the "Insert Python" icon, it's the first one on the second row of icons.

Thanks, I have now re-inserted my code with the indentation intact - see below. (also, I found a bug in my leapyear algorithm which I corrected since I posted the original code!)

def leapyear(year):
	truefalse=[]
	while i in range(len(year)):
		if not year[i]%4 and year[i]%100:
			truefalse.append(True)
		elif not year[i]%4 and not year[i]%100:
			if not year[i]%400:
				truefalse.append(True)
			else:
				truefalse.append(False)
		else:
			truefalse.append(False)


	return truefalse

yearlist=[]

for i in range(2000,2081):
	yearlist.append(i)



print(leapyear(yearlist))
Reply


Messages In This Thread
RE: beginner question about lists and functions - by sudonym3 - Oct-16-2020, 11:08 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Very Beginner question on simple variables Harvy 1 1,066 Apr-12-2024, 12:03 AM
Last Post: deanhystad
  Need help with sorting lists as a beginner Realist1c 1 1,603 Apr-25-2023, 04:32 AM
Last Post: deanhystad
  A simple "If...Else" question from a beginner Serena2022 6 3,270 Jul-11-2022, 05:59 AM
Last Post: Serena2022
  Waiting for heavy functions question philipbergwerf 14 6,201 Apr-29-2022, 07:31 PM
Last Post: philipbergwerf
Question Beginner Boolean question [Guessing game] TKB 4 4,724 Mar-22-2022, 05:34 PM
Last Post: deanhystad
  Beginner question NameError amazing_python 6 3,804 Aug-13-2021, 07:28 AM
Last Post: amazing_python
  Beginner question - storing values cybertron2 4 4,441 Mar-09-2021, 04:21 AM
Last Post: deanhystad
  Noob question about lists adifrank 4 3,963 Nov-19-2020, 03:26 AM
Last Post: adifrank
  Question about functions(built-in) Jinja2Exploitation 2 2,782 Nov-15-2020, 02:13 PM
Last Post: jefsummers
  Split dict of lists into smaller dicts of lists. pcs3rd 3 3,452 Sep-19-2020, 09:12 AM
Last Post: ibreeden

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020