Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
a question from a noob
#6
Test it! Put print() functions to see what is going on.
>>> x = 0
... my_list = []
... while x < 10:
...     print("x = {}".format(x))
...     if x % 2 == 0:
...         my_list.append("dog")
...         try:
...             print(my_list)
...         except:
...             pass    
...     elif x % 3 == 0:
...         my_list.remove("dog")
...         try:
...            print(my_list)
...         except:
...             pass
...     x = x + 1
... print(my_list.count("dog"))
x = 0
['dog']
x = 1
x = 2
['dog', 'dog']
x = 3
['dog']
x = 4
['dog', 'dog']
x = 5
x = 6
['dog', 'dog', 'dog']
x = 7
x = 8
['dog', 'dog', 'dog', 'dog']
x = 9
['dog', 'dog', 'dog']
3
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Messages In This Thread
a question from a noob - by kompressano - Mar-13-2017, 03:39 PM
RE: a question from a noob - by wavic - Mar-13-2017, 03:43 PM
RE: a question from a noob - by kompressano - Mar-13-2017, 03:52 PM
RE: a question from a noob - by zivoni - Mar-13-2017, 03:58 PM
RE: a question from a noob - by kompressano - Mar-13-2017, 04:05 PM
RE: a question from a noob - by wavic - Mar-13-2017, 04:06 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Function not scriptable: Noob question kaega2 3 1,282 Aug-21-2022, 04:37 PM
Last Post: kaega2
  Noob question about lists adifrank 4 2,997 Nov-19-2020, 03:26 AM
Last Post: adifrank
  Noob question: why is shapesize() not working for my turtle adifrank 8 6,006 Sep-09-2020, 11:13 PM
Last Post: adifrank
  Noob question adifrank 6 2,914 Aug-18-2020, 11:50 PM
Last Post: adifrank
  Noob Question: Sample Data csn113 1 2,242 Feb-18-2019, 06:35 PM
Last Post: micseydel
  Noob question on Mac python3, pydoc3 JamesNJ 0 2,357 Oct-08-2018, 04:26 AM
Last Post: JamesNJ
  Maya Python Noob Question Iurii_Ledin 2 3,366 Jun-08-2018, 09:09 PM
Last Post: Iurii_Ledin
  Noob question about python and Maxplus Strator 0 2,693 May-16-2017, 05:07 PM
Last Post: Strator

Forum Jump:

User Panel Messages

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