![]() |
convert a string to a number - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: General (https://python-forum.io/forum-1.html) +--- Forum: News and Discussions (https://python-forum.io/forum-31.html) +--- Thread: convert a string to a number (/thread-32783.html) |
convert a string to a number - Naheed - Mar-05-2021 How will you convert a string to a number in python? RE: convert a string to a number - Larz60+ - Mar-05-2021 You need to take a tutorial if you don't know the answer to such an elementary item. I'd suggest one of: https://runestone.academy/runestone/books/published/thinkcspy/index.html or https://www.python-course.eu/python3_course.php answer: value = int(str) RE: convert a string to a number - Skaperen - Mar-06-2021 what do you mean by "number"? a whole number like 25 or a fractional number like 3.14159? how will you be using this number? RE: convert a string to a number - Naheed - Apr-07-2021 (Mar-05-2021, 04:12 PM)Naheed Wrote: How will you convert a string to a number in python? Thanks for your reply. The links you shared helped me alot. RE: convert a string to a number - Naheed - Apr-07-2021 (Mar-06-2021, 02:45 AM)Skaperen Wrote: what do you mean by "number"? a whole number like 25 or a fractional number like 3.14159? how will you be using this number? Thanks for your reply. Sorry for not asking the question clearly. I was asking about whole number. RE: convert a string to a number - DeaD_EyE - Apr-07-2021 Integer are whole numbers. https://docs.python.org/3/library/functions.html#int Quote:class int([x]) RE: convert a string to a number - Skaperen - Apr-10-2021 (Apr-07-2021, 09:10 AM)Naheed Wrote:(Mar-06-2021, 02:45 AM)Skaperen Wrote: what do you mean by "number"? a whole number like 25 or a fractional number like 3.14159? how will you be using this number? how are you expressing this whole number? if in text, what language(s)? if with digits, in what base? "17"? "23"? "10111"? "XXIII"? "vingt-trois"? "tjue-tre"? "twenty-three"? RE: convert a string to a number - Naheed - Apr-26-2021 Thanks to all of you for your help. I have found the solution. |