Python Review

What is the character that would be placed at the beginning of a line to designate the line as a comment
Click the card to flip 👆
1 / 14
Terms in this set (14)
Write a command statement that would call the function "Main". Do not pass any values to this function.Main()write a command statement that will create a new function called "Main". It should expect to have an value passed to it and store it in the variable "x".def Main(x):Write a command statement that would call the function "Main". Pass the integer 4 to this function.Main(4)Write an assignment statement that will verify that all characters in the string "s" is lower case. Store the lower case version of "s" back into the variable "s"s = s.lower()