- 2
Else statements
how do I do else statements?
4 Answers
+ 6
Plz don't spam.
And specify your question clearly
https://www.sololearn.com/Discuss/1316935/?ref=app
+ 3
Like this:
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2278/
Please go through the lessons in the learn section first, and then if you have any specific issue, we might be able to help. Thanks!
+ 1
you = ''
read_tutorial = False
if read_tutorial:
you = 'I understand'
else :
you = 'wtf ?'
print(you) #wtf ?
0
Specify