Home / Python Variable / How to Create Scientific Number Variables in Python In this example we will show how to create scientific number variables in Python. Source Code a = 5e4 b = 5E4 c = 55.55e4 d = -55.55e10 print(type(a)) print(type(b)) print(type(c)) print(type(d)) Output: