Skip to content

Instantly share code, notes, and snippets.

@vinimonteiro
Created February 5, 2021 15:24
Show Gist options
  • Select an option

  • Save vinimonteiro/df36e9b61357b09b8a2d816ea3e5025c to your computer and use it in GitHub Desktop.

Select an option

Save vinimonteiro/df36e9b61357b09b8a2d816ea3e5025c to your computer and use it in GitHub Desktop.
Dynamically type test
(base) Viniciuss-MacBook-Pro:main-service viniciusmonteiro$ python
Python 3.8.3 (default, Jul 2 2020, 11:26:31)
[Clang 10.0.0 ] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> b = 1
>>> print(b)
1
>>> b = "test"
>>> print(b)
test
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment