Python Forum
Programming (identifier, literal and function call)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Programming (identifier, literal and function call)
#1
Hello

Im am learning Python with Coursera.
I run in to a problem. Everything was going well but now I did not receive the information I need to solve this problem.

Write a program that prompts the user to enter an integer and displays that integer. The program should then prompt the user to enter the integer again and display its binary representation.

For example, here are some sample program runs:
Enter an integer >45
45
Enter it again >45
0b101101

You can use the built-in functions named: input, int, bin and print to help you solve this problem. Look at the documentation for the builtin-in functions at python.org.

tip:

Recall that you can apply a function to the result of a function as many times as you like, for example, to print the rounded value of a floating point number that is input as a string, you can use this expression:

print(round(float(input('Enter a decimal number >'))))

Can somebody help me explain what is going on here?

thank you
Reply


Messages In This Thread
Programming (identifier, literal and function call) - by ledangereux - Aug-18-2018, 05:26 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  can you call a function from a list? KEYS 20 6,294 Nov-10-2020, 06:36 PM
Last Post: KEYS
  Verilog HDL Programming to Python Programming? noobcoder 1 3,052 Jul-18-2019, 09:28 PM
Last Post: nilamo
  Calling function-- how to call simply return value, not whole process juliabrushett 2 3,233 Jul-01-2018, 01:17 AM
Last Post: juliabrushett
  Function call Antonio_Gallardo 3 3,218 Dec-29-2017, 11:13 PM
Last Post: Larz60+
  Error is function call Oracle_Rahul 2 3,167 Sep-21-2017, 06:04 PM
Last Post: nilamo
  Call a code written in Fortran programming language in RhinoPython. TOM 2 4,601 Oct-17-2016, 09:29 AM
Last Post: TOM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020