We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm getting an error running:
print("Hello world")
If I run with single quotes, there is no error:
print('Hello world')
This is the error (I can't copy it)
The text was updated successfully, but these errors were encountered:
The same happens with dictionaries:
Running this:
ages = {"Peter": 10} print(ages["Peter"])
I get: NameError: name 'Peter' is not defined.
Running this I don't have any issue.
ages = {'Peter': 10} print(ages['Peter'])
Sorry, something went wrong.
No branches or pull requests
I'm getting an error running:
If I run with single quotes, there is no error:
This is the error (I can't copy it)
![image](https://user-images.githubusercontent.com/632625/132152835-743dd777-e075-4466-8b07-11050b1c6014.png)
The text was updated successfully, but these errors were encountered: