Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
321 views
in Technique[技术] by (71.8m points)

python - AttributeError: 'function' object has no attribute 'strip'

I am trying to strip the white space from the platform.system value so I can compare it in some if/else logic. I am getting the error below. What am I missing?

line 9, in print(os_name.strip()) AttributeError: 'function' object has no attribute 'strip'

import platform

os_name = platform.system
os_name_strip = os_name.strip()

print('OS Name      :', os_name_strip)

if os_name == 'Windows':
    print('we have an OS match')
else:
    print('we do not have an OS match')
question from:https://stackoverflow.com/questions/65894930/attributeerror-function-object-has-no-attribute-strip

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try this;

import platform
os_name = platform.system()
os_name_strip = os_name.strip()

print('OS Name      :', os_name_strip)

if os_name == 'Windows':
    print('we have an OS match')
else:
    print('we do not have an OS match')

OS Name      : Windows
we have an OS match

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...