Question: 1. Write a program that uses loops to draw this pattern: * ** *** **** ***** ****** 2. Write a python program that asks the
1. Write a program that uses loops to draw this pattern:
*
**
***
****
*****
******
2. Write a python program that asks the user for two truth values and evaluates various logical operations (shown below) between the two inputs
. (hint: The first input statement should be
eval(input('Enter first truth value: ')) ).
Sample Output: Enter first truth value: True
Enter second truth value: False
p and q: False
p or q: True
not p: False
not (p and q): True
not p and not q: False
not p or not q: True
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
