

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to use if...else statement at the command line in Python?
There are multiple ways in which you can use if else construct in the command line in python. For example, bash supports multiline statements, which you can use like:
$ python -c ' > a = True > if a: > print("a is true") > '
This will give the output:
a is true
If you prefer to have the python statement in a single line, you can use the \n newline between the commands. For example,
$ python -c $'a = True\nif a: print("a is true");'
This will give the output:
a is true
- Related Questions & Answers
- What is the ‘if...else if...else’ statement in Java and how to use it?
- How to indent an if...else statement in Python?
- How to use else statement with Loops in Python?
- How to do Python math at command line?
- Java if-else statement
- How to execute Python multi-line statements in the one-line at command-line?
- IF ELSE statement in a MySQL Statement?
- Java if-else-if ladder statement
- Java if-then-else statement
- How to use else conditional statement with for loop in python?
- What is the ‘if else’ statement in Java and how to use it?
- What is the if...else statement in JavaScript?
- What is the syntax of Python if...elif...else statement?
- What is if...else if... statement in JavaScript?
- How to use ‘else if ladder’ conditional statement is C language?
Advertisements