Python Forum
Just need some clarification
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Just need some clarification
#1
boston_celtics = ("kemba", "jaylen", "jayson")

second_player = (boston_celtics[1])

print("The second player in boston is %s" %second_player)
I stumbled upon this code and it piqued my interest. May I ask how this works?
Much thanks!!
Reply
#2
It puts names (as strings) into a tuple, which is like a list or an array and names it boston_celtics.
Lists (and tuples) can be indexed by their position. Indexes are zero-based so the second name ("jaylen") can be indexed by boston_celtics[1].
The last line just prints it using a simple string formatting method and print statement.

All of this is explained in the short tutorial that comes with Python and is written by the creator of Python. It is also online here: https://docs.python.org/2.4/tut/tut.html
"So, brave knights, if you do doubt your courage or your strength, come no further, for death awaits you all with nasty, big, pointy teeth!" - Tim the Enchanter
Reply
#3
@Marbelous, please don't share links to outdated tutorials. it's ancient (2.4) while latest py2 version is 2.7 and by now even python2 support ended
Here is the current one https://docs.python.org/3/tutorial/index.html

@Tonje - this is not best example of code
  • brackets on line 3 are redundant
    second_player = boston_celtics[1]
  • it uses so called old-style formatting. By now there is str.format() method and f-strings
    print("The second player in boston is {}".format(second_player))
    print(f"The second player in boston is {second_player}") # requires 3.6+
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#4
What is your confusion about the code? Are you wondering why boston_celtics[1] returns "jaylen" instead of "kemba"? Python indexing starts at 0, not 1.

Are you wondering what boston_celtics = ("kemba", "jaylen", "jayson") does? The () brackets are a way to create a collection called a tuple. Tuples are like lists (which use [] brackets) but they cannot be modified (append, remove or change items).

Are you wondering what print("The second player in boston is %s" %second_player) does?

print is a command that writes to standard output. What is written will appear in the terminal from which this program was run. The "%" is a format character. The % inside the quotes is replaced by the value of second_player when the string is printed. This is one of several variants of print formatting. I prefer using f strings which I think are easier to read: print(f'The second player in boston is {second_player}')
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Can I get some clarification on importing functions from external files. wh33t 3 859 Feb-25-2023, 08:07 PM
Last Post: deanhystad
  Looking for clarification related to performance Pymon 5 1,996 Apr-04-2022, 04:47 PM
Last Post: deanhystad
  Read Tensorflow Documentation - Clarification IoannisDem 0 1,154 Aug-20-2021, 10:36 AM
Last Post: IoannisDem
  *args implementation and clarification about tuple status amjass12 10 3,915 Jul-07-2021, 10:29 AM
Last Post: amjass12
  Global Variables - Some Points Needing Clarification. adt 4 2,892 Nov-30-2019, 01:23 PM
Last Post: adt
  Clarification Hammuel 2 2,832 Oct-30-2017, 12:22 PM
Last Post: Hammuel

Forum Jump:

User Panel Messages

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