What does user see computer as?
What can we do as a programmer ? ( 3 )
What is a code called when it was executale?
What should we add at the end of out python file?
What should we do when naming variables? ( 4 )
What should we not do when naming variable ? ( 2 )
Is variable name case-sentive?
What is code?
What does software allows us to do?
What is Interactive?
( Interactive Python )
What is script?
What is the difference between interactive vs script ?
What is constants? What are the valued stored inside constant ?
What is a variable ?
When should we use assignment operator? What is the symbol of assignment operator?
List out the symbols in numeric expressions ( 6 )
What is the noun for the term programming languges must know which expressions to do first?
What are the rules of operator precedence rules ? From top to bottom ( 5 )
What is the term concatenate means?
What does python variables, literals and constants have?
How can we know the type in python?
e = “hello”
type(e) # shows type’str’
List out the type of number
What will happen when we put an integer and floating together? ( What type will get )
How can we change the type if available?
e = 1
e = str(e) # Use this code to change from int to str