2018年1月9日 星期二

Python: Perform an action if a condition is true

Python: Perform an action if a condition is true

Python Basic: Exercise-89 with Solution

Write a Python program to perform an action if a condition is true.
Given a variable name, if the value is 1, display the string "First day of a Month!” and do nothing if the value is not equal.
Sample Solution :-
n=1
if n == 1:
    print("\nFirst day of a month")
print()

======= RESTART: F:/Python_APSC/py-ex-basic-89.py ===========

First day of a month

>>> 

沒有留言:

張貼留言

WOKWI LED + MQTT Node-Red SQLite

WOKWI LED + MQTT Node-Red SQLite const char *mqtt_broker = "broker.mqtt-dashboard.com" ; const char *topic1 = "alex9ufo/e...