standajon / PythonDevelopeIntroduction

Missing whitespace after ,, ;, or : FLK-E231
Style
Minor
4 occurrences in this check
missing whitespace after ','
 1def secist(x,y): 2    return x+y
 3
 4
missing whitespace after ','
 2    return x+y
 3
 4
 5def odecist(x,y): 6    return x-y
 7
 8
missing whitespace after ','
 6    return x-y
 7
 8
 9def nasobit(x,y):10    return x*y
11
missing whitespace after ','
 3    return x + y
 4    print("Diky za vypocet")
 5
 6print(calculate_sum(10,2)) 7
 8
 9