About Lesson
Practice this lesson at least 3 times with me.
Join the conversation

print_type_class
Reply

print(2+1)
print(3-1)
print(4*2)
print(6/2) #you will get a flaot number
print(6//2)#you will get an INT
print(15%2) # remainder after division
print(2**3)#expont 2x2x2#PAMDAS (Parenthesis Exponent Multiplaction Division Addition Subraction)
print(3**2/2*3/3+6-4/(2*6))3
8
3.0
3
1
8
10.166666666666666
Reply

for x in range(5, 10):
print(x)The output is starting from 5 to 9. But in your video, it is starting from 6 to 9. Altough I search it on everywhere, like google, Ai, etc. They all give me the same output of my output. Then how is your Visual Studio Code not giving the right output??????????
Reply

troubleshoot is easy
Reply

input_aamaar
Reply

troubleshoot is easy
Reply

i understand functions really well
Reply

if,else,elif statements were cleared
Reply

type_conversion
Reply

convert input
Reply