Hello everybody. For project that I am doing, I would need to write the acceleration formula, which is expressed in metres square two. How do I write 2 above the letter s? For it to be a number I read that it’s done with two asterisks, but the letter aren’t working.
Forum Archive
Print superscript characters in Python
@GiovaBici try
print(f'a\N{superscript THREE}')
which gives
a³
Sorry
print(f's\N{superscript TWO}')
To get
s²
Thank you very much. How can I integrate it in here ( forgive me ignorance but I started recently). Thank you
print("L'accellerazione é: " + str(accellerazione_finale) + " m/s**2")
@GiovaBici said:
print("L'accellerazione é: " + str(accellerazione_finale) + " m/s**2")
accellerazione_finale = 7
print(f"L'accellerazione é: {accellerazione_finale} m/s\N{superscript TWO}")
Gives
L'accellerazione é: 7 m/s²
You can also add Unicode superscripts to the characters: \u00B2
for more information see here: Wikipedia
Result is something like this:
print(''.join('m/s' + '\u00B2'))
print('m/s\u00B2')
@7upser said:
Unicode superscripts
Still better...
accellerazione_finale = 7654
print(f"L'accellerazione é: {accellerazione_finale:,} m/s\u00B2")
L'accellerazione é: 7,654 m/s²
Thank you very much for the answers !
Hello everyone. Can you still help me: how do I write a calculation under the square root? Thanks to who will answer me
I don't think there is a unicode overline that does what you want. You could try U+0305
Really, this is a job for mathml or latex.
I don't think safari supports mathml.
Thank you very much
@cvp
Hi. In this case how can I put the two above m ?:
area_pressione = float(input("Inserisci l'area(m): "))
Thanks and sorry if I still don't understand ...
I still wanted to ask: Can I have certain print commands written in a different color than black?
Thank you
@GiovaBici
area_pressione = float(input("Inserisci l'area(m\u00B2): "))
Inserisci l'area(m²):
@GiovaBici see here
Thank you very much!