How can I solve this printing error in Python?Calling an external command in PythonWhat are metaclasses in Python?How to flush output of print function?How can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How can I make a time delay in Python?Does Python have a string 'contains' substring method?How to print to stderr in Python?Why is reading lines from stdin much slower in C++ than Python?PHP parse/syntax errors; and how to solve them?

Can solid acids and bases have pH values? If not, how are they classified as acids or bases?

"ne paelici suspectaretur" (Tacitus)

Binary Numbers Magic Trick

Cannot populate data in lightning data table

Do generators produce a fixed load?

Is GOCE a satellite or aircraft?

How can I place the product on a social media post better?

Past Perfect Tense

How does a Swashbuckler rogue "fight with two weapons while safely darting away"?

Please, smoke with good manners

If Earth is tilted, why is Polaris always above the same spot?

Does the EU Common Fisheries Policy cover British Overseas Territories?

Is thermodynamics only applicable to systems in equilibrium?

Help, my Death Star suffers from Kessler syndrome!

How to set the font color of quantity objects (Version 11.3 vs version 12)?

What's the metal clinking sound at the end of credits in Avengers: Endgame?

Does jamais mean always or never in this context?

How to figure out whether the data is sample data or population data apart from the client's information?

Options leqno, reqno for documentclass or exist another option?

Why the difference in metal between 銀行 and お金?

Transfer over $10k

Did Henry V’s archers at Agincourt fight with no pants / breeches on because of dysentery?

Does a creature that is immune to a condition still make a saving throw?

Can a creature tell when it has been affected by a Divination wizard's Portent?



How can I solve this printing error in Python?


Calling an external command in PythonWhat are metaclasses in Python?How to flush output of print function?How can I safely create a nested directory in Python?Does Python have a ternary conditional operator?How can I make a time delay in Python?Does Python have a string 'contains' substring method?How to print to stderr in Python?Why is reading lines from stdin much slower in C++ than Python?PHP parse/syntax errors; and how to solve them?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-1















I'm trying to run a code, which includes the following lines:



 #REBIN CUBE TO 10 MAS

print 'Input PSF sampling = (%.1f, %.1f) mas' %(spax[0]/10.),spax[1]/10.)
if head['CDELT1'] != spax[0] and head['CDELT2'] != spax[1]:
print ('Rebinning input datacube to %.0f mas (same as PSF generation scale)') % (spax[0]/10.)
cube *= (head['CDELT1']*head['CDELT2']*1.E-6)


I get the following Syntax Error:



 line 141
print 'Input PSF sampling = (%.1f, %.1f) mas' %(spax[0]/10.),spax[1]/10.)
^
SyntaxError: invalid syntax


I have tried adding parentheses, both sides, but nothing has worked.










share|improve this question






















  • you should read about difference between Python 2 and 3 in print: it was statement like assert in Python 2 but became a built-in function in Python 3

    – Azat Ibrakov
    Mar 22 at 19:26

















-1















I'm trying to run a code, which includes the following lines:



 #REBIN CUBE TO 10 MAS

print 'Input PSF sampling = (%.1f, %.1f) mas' %(spax[0]/10.),spax[1]/10.)
if head['CDELT1'] != spax[0] and head['CDELT2'] != spax[1]:
print ('Rebinning input datacube to %.0f mas (same as PSF generation scale)') % (spax[0]/10.)
cube *= (head['CDELT1']*head['CDELT2']*1.E-6)


I get the following Syntax Error:



 line 141
print 'Input PSF sampling = (%.1f, %.1f) mas' %(spax[0]/10.),spax[1]/10.)
^
SyntaxError: invalid syntax


I have tried adding parentheses, both sides, but nothing has worked.










share|improve this question






















  • you should read about difference between Python 2 and 3 in print: it was statement like assert in Python 2 but became a built-in function in Python 3

    – Azat Ibrakov
    Mar 22 at 19:26













-1












-1








-1








I'm trying to run a code, which includes the following lines:



 #REBIN CUBE TO 10 MAS

print 'Input PSF sampling = (%.1f, %.1f) mas' %(spax[0]/10.),spax[1]/10.)
if head['CDELT1'] != spax[0] and head['CDELT2'] != spax[1]:
print ('Rebinning input datacube to %.0f mas (same as PSF generation scale)') % (spax[0]/10.)
cube *= (head['CDELT1']*head['CDELT2']*1.E-6)


I get the following Syntax Error:



 line 141
print 'Input PSF sampling = (%.1f, %.1f) mas' %(spax[0]/10.),spax[1]/10.)
^
SyntaxError: invalid syntax


I have tried adding parentheses, both sides, but nothing has worked.










share|improve this question














I'm trying to run a code, which includes the following lines:



 #REBIN CUBE TO 10 MAS

print 'Input PSF sampling = (%.1f, %.1f) mas' %(spax[0]/10.),spax[1]/10.)
if head['CDELT1'] != spax[0] and head['CDELT2'] != spax[1]:
print ('Rebinning input datacube to %.0f mas (same as PSF generation scale)') % (spax[0]/10.)
cube *= (head['CDELT1']*head['CDELT2']*1.E-6)


I get the following Syntax Error:



 line 141
print 'Input PSF sampling = (%.1f, %.1f) mas' %(spax[0]/10.),spax[1]/10.)
^
SyntaxError: invalid syntax


I have tried adding parentheses, both sides, but nothing has worked.







python python-3.x printing syntax syntax-error






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 22 at 19:20









Alejandro OrtizAlejandro Ortiz

62




62












  • you should read about difference between Python 2 and 3 in print: it was statement like assert in Python 2 but became a built-in function in Python 3

    – Azat Ibrakov
    Mar 22 at 19:26

















  • you should read about difference between Python 2 and 3 in print: it was statement like assert in Python 2 but became a built-in function in Python 3

    – Azat Ibrakov
    Mar 22 at 19:26
















you should read about difference between Python 2 and 3 in print: it was statement like assert in Python 2 but became a built-in function in Python 3

– Azat Ibrakov
Mar 22 at 19:26





you should read about difference between Python 2 and 3 in print: it was statement like assert in Python 2 but became a built-in function in Python 3

– Azat Ibrakov
Mar 22 at 19:26












1 Answer
1






active

oldest

votes


















1














I hope you are doing good,



print('Input PSF sampling = (%.1f, %.1f) mas' % (spax[0]/10.,spax[1]/10.) )


Should work.



There were two problems:



In python-3.x, print is always with parenthesis. The second problem is that there was an extra parenthesis in your arguments to display.



Have a lovely day.






share|improve this answer


















  • 1





    Thaaaaaaaanks a bunch. You made it lovely.

    – Alejandro Ortiz
    Mar 26 at 1:00











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55306492%2fhow-can-i-solve-this-printing-error-in-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














I hope you are doing good,



print('Input PSF sampling = (%.1f, %.1f) mas' % (spax[0]/10.,spax[1]/10.) )


Should work.



There were two problems:



In python-3.x, print is always with parenthesis. The second problem is that there was an extra parenthesis in your arguments to display.



Have a lovely day.






share|improve this answer


















  • 1





    Thaaaaaaaanks a bunch. You made it lovely.

    – Alejandro Ortiz
    Mar 26 at 1:00















1














I hope you are doing good,



print('Input PSF sampling = (%.1f, %.1f) mas' % (spax[0]/10.,spax[1]/10.) )


Should work.



There were two problems:



In python-3.x, print is always with parenthesis. The second problem is that there was an extra parenthesis in your arguments to display.



Have a lovely day.






share|improve this answer


















  • 1





    Thaaaaaaaanks a bunch. You made it lovely.

    – Alejandro Ortiz
    Mar 26 at 1:00













1












1








1







I hope you are doing good,



print('Input PSF sampling = (%.1f, %.1f) mas' % (spax[0]/10.,spax[1]/10.) )


Should work.



There were two problems:



In python-3.x, print is always with parenthesis. The second problem is that there was an extra parenthesis in your arguments to display.



Have a lovely day.






share|improve this answer













I hope you are doing good,



print('Input PSF sampling = (%.1f, %.1f) mas' % (spax[0]/10.,spax[1]/10.) )


Should work.



There were two problems:



In python-3.x, print is always with parenthesis. The second problem is that there was an extra parenthesis in your arguments to display.



Have a lovely day.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 22 at 19:24









Guillaume LastecoueresGuillaume Lastecoueres

1139




1139







  • 1





    Thaaaaaaaanks a bunch. You made it lovely.

    – Alejandro Ortiz
    Mar 26 at 1:00












  • 1





    Thaaaaaaaanks a bunch. You made it lovely.

    – Alejandro Ortiz
    Mar 26 at 1:00







1




1





Thaaaaaaaanks a bunch. You made it lovely.

– Alejandro Ortiz
Mar 26 at 1:00





Thaaaaaaaanks a bunch. You made it lovely.

– Alejandro Ortiz
Mar 26 at 1:00



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55306492%2fhow-can-i-solve-this-printing-error-in-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript