Python json.dumps (output) ^ syntaxerror:invalid syntax

Source: Internet
Author: User
Problem

The following code performs normally on some machines, and some machines perform errors:

import jsonoutput={}print json.dumps(output)

Python Code Error:

Line 277 print json.dumps (output) ^ syntaxerror:invalid syntax

This is a strange question.
The Python version on the machine that was checked for error is 3.

Therefore, the code is to be handled with compatibility.

Solutions

The code is modified as follows:

import jsonoutput={}print (json.dumps(output))

The parameters of print are enclosed in parentheses. This allows normal execution in both Python2 and python3 environments.

Python json.dumps (output) ^ syntaxerror:invalid syntax

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.