Python Forum
Easy equipment system for simple game and problems with it
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Easy equipment system for simple game and problems with it
#4
(Sep-01-2018, 08:40 AM)j.crater Wrote: type is a reserved Python keyword
Technically speaking, type is not a keyword and it is perfectly legal to use it, however it is a well known builtin function, like list, dict, open, and nobody expects a different meaning for this variable when reading a python program. It is indeed better to rename it.

For a list of keywords (which you cannot use as variable names) see
>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
For a list of builtin names to avoid
>>> sorted(vars(__builtins__))
['ArithmeticError', 'AssertionError', ..., 'type', 'vars', 'zip']
Reply


Messages In This Thread
RE: Easy equipment system for simple game and problems with it - by Gribouillis - Sep-01-2018, 10:05 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Difference between os.system("clear") and os.system("cls") chmsrohit 7 16,605 Jan-11-2021, 06:30 PM
Last Post: ykumar34
  Simple cards game blackpanda 3 4,233 Apr-10-2020, 08:46 PM
Last Post: TomToad
Question Difference between Python's os.system and Perl's system command Agile741 13 6,799 Dec-02-2019, 04:41 PM
Last Post: Agile741
  Super easy for you, not so much for me...just simple install all users etc steelio 1 1,703 Aug-21-2019, 01:56 AM
Last Post: newbieAuggie2019
  Need help with simple guessing game! ghost0fkarma 2 2,802 Nov-03-2018, 01:19 AM
Last Post: ghost0fkarma
  Python simple store inventory system. 2skywalkers 3 9,803 Aug-19-2018, 06:12 PM
Last Post: Gribouillis
  Making a Easy Password/code system nmsturcke 4 3,840 Jul-09-2018, 02:50 AM
Last Post: ichabod801
  Coding Problems With Mr.Stickman Game SheeppOSU 2 4,150 Jun-29-2018, 08:12 PM
Last Post: volcano63
  Bounce Game Problems SheeppOSU 3 3,553 May-07-2018, 07:58 PM
Last Post: SheeppOSU
  Errors in simple text adventure game? ecloev 5 4,839 Apr-10-2018, 05:55 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

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