+ 2
age=25 money=500 if age>18 ? money>100 ? ("welcome")
age=15 money=500 if age>18 or money>100 print("welcome") , а если age=15 , поменять на age=25 что изменится?
10 Answers
+ 3
Fill in the blanks to print "Welcome".
age = 15
money = 500
if age > 18
or
money > 100:
print
("Welcome")
+ 2
print welcome
+ 2
The ans is or & print
+ 1
Будет более рациональнее сделать так.
https://code.sololearn.com/WCG6yLGRg2JV/?ref=app
0
python check it out and give it a clap. Thanks...
0
The answer is 'or' but could also be '!='
Fill in the blanks to print "Welcome".
age = 15
money = 500
if age > 18 != money > 100:
print("Welcome")
0
age = 15
money = 500
if age > 18 or
money > 100:
print
("Welcome")
0
I still confused, why the answer is "or"?
i think the answer is "and", please explain
0
1. or
2. print
- 1
age 15
money =500
if age >18 or money> 100:
print ("welcome")