Saved Bookmarks
| 1. |
Give an example for input with and without prompt string? |
|
Answer» Example 1: input ( ) with prompt string >>> city = input (“Enter Your City: ”) Enter Your City: Madurai Example 2: input ( ) without prompt string >>> city = input ( ) Rajarajan |
|