00:35:33 Charu Malhotra: sir I am in the class back now I can c the slides 00:35:47 Vipul Saxena: Good 00:39:37 Subhadeep Sarkar: audio is clear 00:46:05 Vipul Saxena: print('Enter your name:') x = input() print('Hello, ' + x) 00:46:58 Vipul Saxena: print('Enter your name:') x = input() print('Good Evening ' + x) 00:49:07 Vipul Saxena: vAge = int(input("Enter your age : ")) print("Your age is " + str(vAge)) 00:57:43 Pratik Gedam: vAge = int(input("Enter your age : ")) print("Your age is " + str(vAge)+str(22)) 01:02:52 Payal Solanki: print("Your age is " + str(int(vAge) + 22)) 01:03:08 pravallika.s: vAge = int(input("Enter your age : ")) print("Your age is " +str((vAge)+(22))) 01:03:55 appalaraju.g: vage = int(input('Enter your age')) print("age is "+str(vage+22)) 01:04:23 Vipul Saxena: vAge = int(input("Enter your age : ")) print("Your age is " + str(int(vAge) + int(22))) 01:07:02 Srinivasa Rao Pujari: yes 01:07:55 Archana Kanchanapalli: its an inbuilt set of defined functions 01:19:03 Vipul Saxena: import pandas as pd print("pandas current version is your system : " + pd.__version__) 01:20:59 kishore.a: import numpy as ns print("pandas current version is your system : " + ns.__version__) 01:21:06 kishore.a: numpy library version 01:22:06 Srinivasa Rao Pujari: 2.2.2 01:24:21 Vipul Saxena: import pandas as pd data = { "calories": [420, 380, 390], "duration": [50, 40, 45] } #load data into a DataFrame object: df = pd.DataFrame(data) print(df) 01:29:29 Vipul Saxena: data = { "calories": [420, 380, 390, 890], "duration": [50, 40, 45, 78] } #load data into a DataFrame object: df = pd.DataFrame(data) print(df) 01:37:15 Archana Kanchanapalli: Files will be placed in Directory 01:41:57 Vipul Saxena: # get current working directory import os vCwd = os.getcwd() print(vCwd) 01:42:27 appalaraju.g: C:\Users\appalaraju.g 01:42:29 Saritha Devpunje: /Users/saritadevpunjejha. output 01:42:30 Archana Kanchanapalli: C:\Users\akanchanapal 01:42:52 Rajeswar S: C:\Users\MyPC 01:43:03 Immanuel Babu: C:\Users\Hency 01:43:16 Rishabh Laptop: C:\Users\Rishabh 01:43:19 Samit Borkar: C:\Users\Administrator 01:43:24 Pallavi: C:\Users\pallavi 01:43:33 Pratik Gedam: NameError Traceback (most recent call last) Cell In[31], line 1 ----> 1 directory 2 import os 4 vCwd = os.getcwd() 01:46:24 Vipul Saxena: # Set working directory import os path = "D:/Vipul/UpTop" os.chdir(path) vCwd = os.getcwd() print(vCwd) 01:46:41 Vipul Saxena: # Set working directory import os path = " --------" os.chdir(path) vCwd = os.getcwd() print(vCwd) 01:49:08 appalaraju.g: E:\Raju 01:51:54 Rama N K: Cell In[30], line 3 path = "C:\Users\arcsp" ^ SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escap 01:51:58 Archana Kanchanapalli: C:\Users\akanchanapal\Desktop\IIM Vizag\Archana python 01:53:54 Archana Kanchanapalli: I think, that is concept of absolute path and relative path 02:07:05 Vipul Saxena: print(vCwd) # File write vFile = open("AIMLBatch2.txt","a") 02:09:03 Rishabh Laptop: #File write # Set working Directory import os path= "F:/AI_ML IIM V" os.chdir(path) vFile = open("AIMLBatch2.text","a") 02:12:38 Vipul Saxena: # File write vFile = open("AIMLBatch2.txt","a") vFile.write("India is a great country. \n India has won T20 WC recently ") 02:13:12 appalaraju.g: import os path = "E:\\raju2" os.chdir(path) v=open("raju.txt","a") v.write("raju is good boy") 02:18:46 Vipul Saxena: # File read vFile1 = open("AIMLBatch2.txt","r") vFileRead = vFile1.read() print(vFileRead) 02:28:06 Vipul Saxena: # Remove the file from system import os if os.path.exists("AIMLBatch2.txt"): os.remove("AIMLBatch2.txt") else: print("The file does not exist")