Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Two minor corrections: (1) You wrote: “But remember that the output integer is always in base 10” The output of int() is an integer, stored in the computer’s native format for numbers, binary. By default, when printing out variables or results of type int, they are printed in decimal (2) You wrote: “Another thing you need to remember is that the given base must be in between 2 to 32.” the correct range is base 2 to base 36 3) A suggestion: The industry standard for decades for base 16 is “hexadecimal” , I have never seen Hexa as an alternative 4) As an alternative to a block of code followed by a block of output, maybe a screen capture of the examples and results as shown in an IDE such as Idle., so that the results are right next to the example statements
- Philip Freidin
here 123 is an single number this doesn’t work for a = '1 2 3 ’ seperated by spaces how ???
- Aakash
I’m trying to make an if statement that will find whether or not the item is a number in the string, if it is, it will take that number and repeat a function that many times. I’m really confused on how I would make this work
- Joshua
hellow i have a question this my activity its very defficult😊 here is the output using python write a program that accepts decimal integer and ask the user to what numeric literal conversion is. Test 1 Enter a number: 100 convert to - Type A binary B octal C hex): A In binary: 0b1100100 Test case 2 Enter a number: 31 convert to - Type A binary B octal C hex): C In hexadecimal: 1F thats the output! how to program that output
- Lesther Pontillas