Examlex

Solved

The Following Code Will Display 'Yes + No

question 34

True/False

The following code will display 'yes + no':
mystr = 'yes'
yourstr = 'no'
mystr += yourstr
print(mystr)


Definitions:

Related Questions