Python Forum
[Tkinter] AttributeError: 'tuple' object has no attribute 'replace'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] AttributeError: 'tuple' object has no attribute 'replace'
#2
From the error it looks to me that filedialog.askopenfilenames returns a tuple of strings
After the line
song   =   filedialog.askopenfilenames(initialdir='audio/',   title="Choose  A  Song",   filetypes=(("mp3  Files",  "*.mp3"),   ))
try adding print(song) to see what it contains.

It may return a single string if you set the following option to False
https://docs.python.org/3.9/library/dial...filedialog Wrote:multiple - when true, selection of multiple items is allowed
Reply


Messages In This Thread
RE: AttributeError: 'tuple' object has no attribute 'replace' - by Yoriz - Jul-30-2020, 11:55 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  'NoneType' object has no attribute 'get' zunebuggy 8 1,613 Oct-13-2023, 06:39 PM
Last Post: zunebuggy
  tkinter AttributeError: 'GUI' object has no attribute pfdjhfuys 3 1,735 May-18-2023, 03:30 PM
Last Post: pfdjhfuys
  [Kivy] Windows 10: AttributeError: 'WM_PenProvider' object has no attribute 'hwnd' mikepy 1 2,462 Feb-20-2023, 09:26 PM
Last Post: deanhystad
  [Tkinter] Can't update label in new tk window, object has no attribute tompranks 3 3,701 Aug-30-2022, 08:44 AM
Last Post: tompranks
  [PyGUI] [Solved]Replace attribute for Floats Extra 5 4,721 Jun-10-2022, 05:44 PM
Last Post: deanhystad
  AttributeError: 'NoneType' object has no attribute 'get' George87 5 15,838 Dec-23-2021, 04:47 AM
Last Post: George87
  [PyQt] AttributeError: 'NoneType' object has no attribute 'text' speedev 9 11,682 Sep-25-2021, 06:14 PM
Last Post: Axel_Erfurt
  [Tkinter] AttributeError: '' object has no attribute 'tk' Maryan 2 14,938 Oct-29-2020, 11:57 PM
Last Post: Maryan
  [Kivy] AttributeError: 'NoneType' object has no attribute 'bind' faszination_92 2 6,378 Apr-12-2020, 07:01 PM
Last Post: Larz60+
  AttributeError: '_tkinter.tkapp' object has no attribute 'place_forget' edphilpot 5 9,324 Dec-20-2019, 09:52 PM
Last Post: joe_momma

Forum Jump:

User Panel Messages

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