To cast the variable num to an integer and store it in new_num, what code should be entered in the blank?

num= input("Please enter a number: ")

____________________________

print(new_num)

Group of answer choices

new_num=integer(num)

new_num=num

new_num=int(num)

new_num=str(num)

new_num=int(num)