Untitled

From Юлия Швец, 10 Months ago, written in Plain Text, viewed 120 times.
URL http://codebin.org/view/1d4f693d Embed
Download Paste or View Raw
  1. time = 'день'
  2.  
  3. if time == 'утро':
  4.     print('завтрак')
  5. # python выполнит эту ветку кода:
  6. elif time == 'день':
  7.     print('обед')
  8. # а эти пропустит:
  9. elif time == 'день':
  10.     print('ланч')
  11. elif time == 'вечер':
  12.     print('ужин')

Replies to Untitled rss

Title Name Language When
Re: Untitled Юлия Швец python 10 Months ago.

Reply to "Untitled"

Here you can reply to the paste above