Hi guys, I just started learning python and i write a simple code using function but it is not showing me output in pycharm which i want it show me "Process finished with exit code 0" please help me out. Thanks in advance.
open source software
Code:
x="volvo"
def myfunc():
global x
x="audi"
print("This is " + x)
myfunc()
Comment