Python, How To Print Without Newline or Space?
I have a simple problem with python about new line while printing. How can I print without newline or space? In python print will add at the end of the given string data \n newline or...
Linux, Windows, Security, Programming, Network Tutorials
by İsmail Baydan · Published 25/05/2017
I have a simple problem with python about new line while printing. How can I print without newline or space? In python print will add at the end of the given string data \n newline or...
by İsmail Baydan · Published 25/05/2017
Python provides different keywords which do not exists in other programming languages. pass is one of the original keyword used for nothing. pass keyword is a requirement for python block specification and syntax. Why To pass?...
by İsmail Baydan · Published 25/05/2017
Python is popular language where it provides a lot of features. These features provides easy ways to accomplish programming tasks. But only using Python language features is not enough to write successful applications. There...
by İsmail Baydan · Published 24/05/2017
We are new in python and have learned functions all ready. If we do not know the PYthon functions we can get information from http://www.poftut.com/define-use-functions-python-def/ . Now we know a lot about functions. But we see...
by İsmail Baydan · Published 24/05/2017 · Last modified 25/05/2017
Python provides different features some of them do not exists in other programming languages. In this tutorial we will look one of them. yield keyword is used with generators. Generators are some iterative mechanisms which...
by İsmail Baydan · Published 22/05/2017
We have already looked if-elif-else statements in previously. if-elif-else requires conditions in order evaluate. These conditions may simple True , False or comparisons. The other way is we can define complex conditionals in order to evaluate. Simple Conditions...
by İsmail Baydan · Published 22/05/2017
Python provides different type of looping mechanism. while is the most popular one after for loops. while loops generally used to iterate and check given condition result as boolean. If the condition is True the loop will resume...
by İsmail Baydan · Published 21/05/2017
Python provides different functions and libraries for operating system related operations. Creating new directory or directories is very popular thing amongst developers. In this tutorial we will look how to create and make directory...
by İsmail Baydan · Published 21/05/2017
Python provides different variable type for programmers usage. We can use int, float, string, list, set … data types in our applications. While using different type of variables we may need to convert then...
by İsmail Baydan · Published 21/05/2017 · Last modified 25/05/2017
Python programming language provides different data types in order to use data in applications. We generally use variables in order to store our data. As the name suggests variables can be changed during their...