jaleman
jaleman

Reputation: 63

VS Code Python 3- Hover over variable types

Python in VS Code

When I hover over some variables I get this showing. How do I make sense of this? Does it mean that the value variable has an int and a float type? Unfortunately I don't have the reputation to display the image directly on the post.

Upvotes: 1

Views: 781

Answers (1)

Falanke
Falanke

Reputation: 69

It means the variable can be either int or float type depends on the runtime environment.

Upvotes: 1

Related Questions