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;
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
add a comment |
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
you should read about difference between Python 2 and 3 inprint
: it was statement likeassert
in Python 2 but became a built-in function in Python 3
– Azat Ibrakov
Mar 22 at 19:26
add a comment |
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
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
python python-3.x printing syntax syntax-error
asked Mar 22 at 19:20
Alejandro OrtizAlejandro Ortiz
62
62
you should read about difference between Python 2 and 3 inprint
: it was statement likeassert
in Python 2 but became a built-in function in Python 3
– Azat Ibrakov
Mar 22 at 19:26
add a comment |
you should read about difference between Python 2 and 3 inprint
: it was statement likeassert
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
add a comment |
1 Answer
1
active
oldest
votes
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.
1
Thaaaaaaaanks a bunch. You made it lovely.
– Alejandro Ortiz
Mar 26 at 1:00
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
1
Thaaaaaaaanks a bunch. You made it lovely.
– Alejandro Ortiz
Mar 26 at 1:00
add a comment |
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.
1
Thaaaaaaaanks a bunch. You made it lovely.
– Alejandro Ortiz
Mar 26 at 1:00
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
you should read about difference between Python 2 and 3 in
print
: it was statement likeassert
in Python 2 but became a built-in function in Python 3– Azat Ibrakov
Mar 22 at 19:26