Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 22 Online
OpenStudy (anonymous):

how do i assert that a variable in a function (say f(x)) is a string?

OpenStudy (anonymous):

Within the function definition, write the following line (where inputstring is the variable to be tested): assert type(inputstring) is str, 'inputstring is not a string.' If inputstring was a string, the function proceeds. If inputstring was anything else, the interpreter throws an AssertionError at you and prints the string that follows the comma in the assertion statement.

OpenStudy (anonymous):

if type(thing) is not str: raise TypeError, thing + ' is not a string'

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!