You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python doesn't seem to like it when I use the variable 'x_' for the minima. Will we get marked down if we use something else (like 'xm')? Or is there some trick I'm missing that would allow the use of 'x_'?
The text was updated successfully, but these errors were encountered:
Python, like most languages, only allows alphabets, numerals and underscore in variable names. Characters like * + - / are reserved for arithmetic and other operations. Google Python Operators for details.
You may pick your own variable names, but do not change function names or signatures, so that our test suites work with your code.
Python doesn't seem to like it when I use the variable 'x_' for the minima. Will we get marked down if we use something else (like 'xm')? Or is there some trick I'm missing that would allow the use of 'x_'?
The text was updated successfully, but these errors were encountered: