
If you are a student learning Python Programming I am sure that your Teacher gives you a lot of code questions wherein you are asked to take inputs from the user from the command line or the Terminal to solve the problem.
In order to take input argument from the command line, you can make use of the input() function, let's see some examples,
Example 1: Take input from the command line as a name and display a greeting!print ("What's your name?")
name = input()
print(f"Hello {name}! Hope you are doing good!")
Output:
What's your name?
Sam
Hello Sam! Hope you are doing good!
Example 2: Add two numbers by the inputs provided by the user as Terminal arguments
"""
In this example, we will
take a look at how to
get input arguments
from the user using the command line
in Python Programming
Author: Code2care.org
Date: 03-Apr-2022
Version: 1.0
"""
no1 = int(input())
no2 = int(input())
print ("Sum: ",no1+no2)
Output:
10
20
Sum: 30
More Posts related to Python,
- How to add two float numbers in Python
- tkinter - Hello World! Program
- Convert Float to String in Python
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- How to List all Packages installed using pip [Python]
- Check if String Contains a Substring - Python
- Change label (text) color in tkinter
- Where does brew install python in macOS
- Validate email address in Python using regular expression (regex)
- How to uninstall pip Python packages
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- Python: Fix command not found pip or pip3 on zsh shell
- Check version of pip package installer for Python
- 3 Python program to add two numbers
- Calculate discount amount python code
- How to add borders to tkinter label text
- How to install Python 3.9 using brew on Mac
- Python Program To Calculate Simple Interest (SimpleInterest.py)
- Comments in Python Programming
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to take user input from the console in a Python program
- Install and Run Jupyter Notebook on Mac (macOS)
- Tkinter - add x and y padding to label text
- 7 Python Arithmetic Operators with Examples [Tutorial]
- Python Sleep Function/Method Code Example
More Posts:
- JBoss stuck loading JBAS015899: AS 7.1.1.Final Brontes starting - Java
- Change Title text for Android Activity using java code - Android
- How to See Hidden Folders and Files on macOS - Mac-OS-X
- How to add Multiple Rulers in Sublime Text - Sublime-Text
- Teams - You're offline. Messages you send while offline will be sent when you're back online - Teams
- PHP Fatal error : Call to a member function bind_param() on a non-object - PHP
- Java Decompiler Eclipse Plugin - Eclipse
- How to get weather details in Command Prompt, macOS or Linux Terminal - HowTos