# intermediate python day 1: General Review
#q4
water="fishman"
print water
rate=79.5
print rate
pan=10+10
print pan
box=12<6
print box
#q5
print len('electrification')
#q6
business=raw_input("what is your name")
print "hello%s you i welcome to my home' % busines"
#q7
LIB_weather=raw_input("what is the weather ?")
weather_R="dry season"
weather_S="rainy season"
if LIB_weather==weather_R:
print" you need umbrella"
elif LIB_weather==weather_S:
print "yes need a umbrella n Tshirt"
else:
print "this weather is in LIB"
#q8
print not not not false
#q9
print 510+12!=600-78
#q10
print"personification"[7]
#q11
print "freedom".upper()
#q12
from datetime inputdatetime
current_datetime=date.now()
"""
No comments:
Post a Comment