0
It shows error and says you have not define variable S but i already have.
floatS floatV floatT print ("S=7425/1.609") print("V=550/1.609") print('T= S/V')
4 Antworten
+ 4
S = 7425/1.609
V = 550/1.609
T = S/V
print(S, V, T, sep="\n")
+ 3
The separator between the arguments to print() function in Python is space by default (softspace feature) , which can be modified and can be made to any character, integer or string as per our choice.
+ 2
Thankyou very much
0
What does sep do