# Creating scientific numbers
num1 = 2e3 # 2 x 10^3
num2 = 1.5e-2 # 1.5 x 10^-2
num3 = -6.67e-11 # -6.67 x 10^-11
# Outputting the scientific numbers
print(num1)
print(num2)
print(num3)
2000.0
0.015
-6.67e-11e" notation to indicate the power of 10. The first number, `num1`, is equal to `2 x 10^3`, the second number, `num2`, is equal to `1.5 x 10^-2`, and the third number, `num3`, is equal to `-6.67 x 10^-11`.print` function to output the values of the scientific numbers to the console.