0
Can u tell me the error
def hello(): print("Hello world!") Hello()
2 ответов
+ 2
Python is case sensitive language,
When you define function you're using lower case "h" and at time of calling function you're using upper case "H"
def hello():
print("Hello world!")
hello()
0
The function called hello h must be small