Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How do I convert a string to a number?

Answer Posted / chaitanya

Python contains several built-in functions to convert values from one data type to another data type.

The int function takes string and coverts it to an integer.

>>>s = "1234" # s is string

>>>i = int(s) # string converted to int

>>>print i+2

-------------------------

1236

The float function converts strings into float number.

>>>s = "1234.22" # s is string

>>>i = float(s) # string converted to float

>>>print i

-------------------------

1234.22

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does exit () do in python?

838


Tell me the use of the split function in python?

1006


Explain docstring in python?

879


What is a character?

937


What are the ones that can be used with pandas?

813


What is python used for at google?

979


Difference between python list comprehension vs. Map?

985


What are the uses of List Comprehensions feature of Python?

942


Tell us what is python?

1013


Write a program to draw a board ex: 3by3 or 4by4 etc?

799


how do you reverse a list in python?

955


Tell me how do you debug a program in python? Is it possible to step through python code?

809


What is dictionary in python?

904


What does isnull mean in python?

875


What is the dictionary?

879