Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Easy-ones/User-input-to-Number.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Take two inputs from the user. One will be an integer. The other will be a float
Use input. By default, input gives you a string. Then use int and float to convert the input to a number. And then multiply them. That’s it.

## Solution
## Method 1-
```python
int_text = input("Give me an integer number: ")
int_num = int(int_text)
Expand All @@ -18,7 +19,13 @@ float_num = float(float_text)
result = int_num * float_num
print("Your result is: ", result)
```

## Method 2-
```python
int_num = int(input("Give me an integer number: "))
float_num = float(input("Give me a float number: "))
result = int_num * float_num
print("Your result is: ", result)
```
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**

## Shortcut
Expand Down