Код: Выделить всё
import numpy as np
import matplotlib.pyplot as plt
# Data...
T = np.arange(0, 101, 0.01)
R_e = 1.68799673810490
R = np.sin(T) + R_e
# Plotting figure
fig, ax = plt.subplots(1, 1)
ax.plot(T, R)
# Attempting to set scientific format for both axes
ax.ticklabel_format(axis = 'both', style = 'scientific', scilimits = (0, 0))
# Save figure
plt.savefig('Test.png', format = 'png')

Будем благодарны за любую помощь!
Подробнее здесь: https://stackoverflow.com/questions/791 ... scientific