0
True / false statement. This is with Python.
So If i do this print ("hello") == ("hello") It's a true / false statement, how would i do an if statement for thst being true? Like print ("hello") == ("hello") If true or what ever print ("bla bla bla")
1 ответ
+ 4
if 'hello' == 'hello':
print('bla bla bla')