+1 vote
in Python by
Which one of the following is the correct way of declaring and initializing a variable, x with the value 7?

a) int x

x=7

b) int x=7

c) x=7

d) declare x=7
...