Zzemp
Sun 29 June 2025
import pyutil as pyu
pyu.get_local_pyinfo()
'conda env: C:\\Users\\Afia Jahan\\anaconda3\\envs\\py312; pyv: 3.12.11 | packaged by Anaconda, Inc. | (main, Jun 5 2025, 12:58:53) [MSC v.1929 64 bit (AMD64)]'
print(pyu.ps2("yfinance pandas matplotlib"))
import yfinance as yf
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
def show_graph(symbol):
pass
Cell In[11], line 3
pass
^
IndentationError: expected an indented block after function definition on line 1
show_graph("AMZN")
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
Cell In[12], line 1
----> 1 show_graph("AMZN")
NameError: name 'show_graph' is not defined
Score: 5
Category: basics