8000 GitHub - pavansai26/BASIC-python: fake news detection
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

pavansai26/BASIC-python

Repository files navigation

BASIC-python

#python basics

print('hello github world') output:'hello github world' #quotations are also come #if you don't want quotations in the output and you want sapce for each element write like this print(*'hello github world')

a,b=3,5 print(a is b) # is operator compare the memory location of the variables #if they belonging to the same memory location it will give true output: false

#if condition examples i=10 if(i>5): print('i is greater') else: print('i is not greater')

i=10 if(i==10): if(i<15): print('i is smaller') if(i<12): print('less than 12') else: print('greater')

i=20 if(i==10): print('i is 10') elif(i==15): print('i is 15) else: print('i is greater)

About

fake news detection

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0