Skip to content

Latest commit

 

History

History
36 lines (17 loc) · 638 Bytes

File metadata and controls

36 lines (17 loc) · 638 Bytes

print("hello world")

Day2

print(value := 10) #walrus operator

Day3

pep3 install pandas #pip3 for mac termincal

import pandas

Day4

println(17*13)

Day5

#This is a comment

for multi line comment use triple ''' or """

Alt + ↓ #to move line

Escape Sequence Characters \n \" print("I am a good \"boy\" and\nthis is new line")

print("Hey", 6, 7, sep="~", end="009\n")