Skip to content

Instantly share code, notes, and snippets.

@richellyitalo
Created April 20, 2019 09:10
Show Gist options
  • Save richellyitalo/eecb216884fa85ac1171d4c24c4b9196 to your computer and use it in GitHub Desktop.
Save richellyitalo/eecb216884fa85ac1171d4c24c4b9196 to your computer and use it in GitHub Desktop.

Converter valor string para tipo passado

import ast
boleano = 'True'
boleano_mesmo = ast.literal_eval(boleano)

flutuante = '100.50'
flutuante_mesmo = ast.literal_eval(flutuante)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment