Python Forum
Label.Place did not work?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Label.Place did not work?
#12
just to comment on something that looks like misconception. return() on line 38 is redundant.

1. Functions by defualt (i.e. if they don't return explicitly) will return None
2. return is a statment, not a function (i.e. it looks like you think yon need to call it)
3. return() is just returning empty tuple. you don't care about returned value anyway.

def spam():
    pass

def eggs():
    return

def foo():
    return()


print(spam())
print(eggs())
print(foo())
print(type(foo()))
Output:
None None () <class 'tuple'>
I would suggest that you post the code in code review section if you want a feedback.
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


Messages In This Thread
Label.Place did not work? - by ATARI_LIVE - Sep-17-2020, 08:52 AM
RE: Label.Place did not work? - by buran - Sep-17-2020, 09:03 AM
RE: Label.Place did not work? - by ATARI_LIVE - Sep-17-2020, 10:48 AM
RE: Label.Place did not work? - by buran - Sep-17-2020, 10:58 AM
RE: Label.Place did not work? - by ATARI_LIVE - Sep-17-2020, 11:04 AM
RE: Label.Place did not work? - by GOTO10 - Sep-17-2020, 11:11 AM
RE: Label.Place did not work? - by buran - Sep-17-2020, 11:05 AM
RE: Label.Place did not work? - by ATARI_LIVE - Sep-17-2020, 12:03 PM
RE: Label.Place did not work? - by TAREKYANGUI - Sep-17-2020, 04:43 PM
RE: Label.Place did not work? - by deanhystad - Sep-17-2020, 05:22 PM
RE: Label.Place did not work? - by ATARI_LIVE - Sep-18-2020, 08:40 AM
RE: Label.Place did not work? - by buran - Sep-18-2020, 10:31 AM
RE: Label.Place did not work? - by ATARI_LIVE - Sep-18-2020, 11:24 AM
RE: Label.Place did not work? - by ATARI_LIVE - Sep-18-2020, 03:05 PM
RE: Label.Place did not work? - by buran - Sep-18-2020, 03:25 PM
RE: Label.Place did not work? - by ATARI_LIVE - Sep-18-2020, 04:22 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Place QT Window in the middle AlphaInc 10 2,246 Aug-03-2023, 05:40 PM
Last Post: Axel_Erfurt
  [Tkinter] how to make label or button not visible with the place method? nowayj63 2 2,837 Jan-03-2023, 06:29 PM
Last Post: Yoriz
  [Tkinter] How to place scroll bar correctly scratchmyhead 1 3,965 May-18-2020, 04:17 PM
Last Post: scratchmyhead
  How to use place holders in tkinter sqlite scratchmyhead 1 1,837 May-12-2020, 06:13 PM
Last Post: Larz60+
  thinker button gui place next to each other jacklee26 9 4,790 Jul-04-2019, 07:48 AM
Last Post: wuf

Forum Jump:

User Panel Messages

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