0% found this document useful (0 votes)
30 views1 page

Python Basics: Print, Input, and Conditions

The document provides a brief overview of basic Python concepts, including the print function for displaying output and the input function for capturing user responses. It also introduces the integer variable type and explains conditional statements using 'if' and 'else'. Additionally, it mentions the use of '!' as a logical negation operator.

Uploaded by

gipsesukno
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views1 page

Python Basics: Print, Input, and Conditions

The document provides a brief overview of basic Python concepts, including the print function for displaying output and the input function for capturing user responses. It also introduces the integer variable type and explains conditional statements using 'if' and 'else'. Additionally, it mentions the use of '!' as a logical negation operator.

Uploaded by

gipsesukno
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Python

Print('Hello')
The print fuction is used to print stuff in the concole. You can basicly print
anything.

PythonAsk = input('Do you like python')


It saves the user what it types so you can print

int
int is a varable where you can set a word into var

If, and Else


This is basicly this part
if this happens do this else do this

!
This ! is meant for not

You might also like