jupyter Flashcards
1
Q
How to add Headings in Jupyter Lab
A
Set mardown in cell options,now use # to start heading No. of hash define the font size ,more hashes results small font size. # Heading 1 ## Heading 2 ### Heading 3
2
Q
How to get object function help in jupyter notebook ?
A
object.function? then execute it , shows function details.
myStr = “Hemant”
myStr.upper? Shows detaiuls of upper() function