Python Tutorial 13 | Sequential statements

Publicado em: 20 Agosto 2020
no canal de: NaNdalal Dev
4,294
59

In this video you will learn about sequential statements in python.
Sequential Statements are the set statements where the execution process will happen in sequence manner(line by line execution.)
Example 1:
print('--Menu--')
print('1)Coffee')
print('2)Tea')
print('3)Milk Shake')
output:
-Menu-
1)Coffee
2)Tea
3)Milk Shake


Example 2:
a=int(input('Enter a:'))
b=int(input('Enter b:'))
c=a+b
print(c)


Output:
Enter a:4
Enter b:3
7
Both the outputs are given sequentially.


Nesta página do site você pode assistir ao vídeo on-line Python Tutorial 13 | Sequential statements duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário NaNdalal Dev 20 Agosto 2020, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 4,294 vezes e gostou 59 espectadores. Boa visualização!