I have looked at this link and a few others but they seem to mainly focus on python version two: Two values from one input in python? (Note: Just like the asker in the link above, I've also coded in C)
Is there a version 3 equivalent to all this? If I were to write the code:
integer_n, float_n = int(input("Enter a integer and float: "))
#And the user enters:
#4, 5.5
Since python implicitly converts an integer to a float, this should work. But Im getting an error from the IDE.