“So setzen Sie Pandas DataFrame als global” Code-Antworten

So setzen Sie Pandas DataFrame als global

import pandas as pd

data = pd.DataFrame({'A' : [1, 2, 3, 4],
                     'B' : [1,2,3,4]})
def test():
    global data
    data =  data + 1

test()
Modern Manx

So setzen Sie Pandas DataFrame als global

import pandas as pd

data = pd.DataFrame({'A' : [1, 2, 3, 4],
                     'B' : [1,2,3,4]})

def test(data):
   data =  data + 1
   return data

data = test(data)
Modern Manx

Ähnliche Antworten wie “So setzen Sie Pandas DataFrame als global”

Fragen ähnlich wie “So setzen Sie Pandas DataFrame als global”

Weitere verwandte Antworten zu “So setzen Sie Pandas DataFrame als global” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen