Created
June 22, 2020 11:33
-
-
Save ChaitanyaBaweja/e7b215b436262134e661047418cb5c9f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float_1 = float(input("Enter value: ")) | |
print('Type of float_1:',type(float_1)) | |
result = float_1*2 | |
print("Twice the given numbers is : ", result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment