BetaTester
0
Q:

python basics

"""
Great foundation for basics 
https://www.w3schools.com/python/default.asp"
"""
12
#for python comments
5
print("Hello World")
-1

  x = "awesome"

def myfunc():
  global x
  x = "fantastic"

myfunc()

  
print("Python is " + x) 
0

  def myfunc():
  global x
  x = "fantastic"

myfunc()

  
print("Python is " + x) 
0

x = "awesome"


  def myfunc():
  x = "fantastic"
  print("Python is " + x)

myfunc()

  
print("Python is " + x) 
0

New to Communities?

Join the community