In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article mainly introduces the python input how to input and read numbers, the article is very detailed, has a certain reference value, interested friends must read it!
1. Starting with Python3, input returns a string that must be explicitly converted to ints, using int.
X = int (input ("Enter a number:")) y = int (input ("Enter a number:"))
2. You can accept any cardinality and use the int function to convert them directly to cardinality.
> data = int (input ("Enter a number:"), 8) Enter a number: 777 > data511 > data = int (input ("Enter a number:"), 16) Enter a number: FFFF > > data65535 > data = int (input ("Enter a number:"), 2) Enter a number: 10101010101 > > data1365
The second parameter tells what the cardinality of the input number is, and then it understands and converts it internally. If the data entered is incorrect, a ValueError will be thrown.
> data = int (input ("Enter a number:"), 2) Enter a number: 1234Traceback (most recent call last): File ", line 1, in ValueError: invalid literal for int () with base 2: '1234'
For values that can have decimal parts, the type will be float instead of int:
X = float (input ("Enter a number:")) these are all the contents of the article "how to input and read numbers in input in python". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 265
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.