Forwarded from Deleted Account
def reverser(str):
reversed = ""
for i in range(len(str) - 1 , -1 , -1):
reversed += str[i]
return reversed
print(reverser("i love python"))
reversed = ""
for i in range(len(str) - 1 , -1 , -1):
reversed += str[i]
return reversed
print(reverser("i love python"))
Forwarded from Tensu Creative (Asibeh Tenager)
✅You can't make the same mistake twice. The second time you make it, it's no longer a mistake, it's a choice.
#PyschologicalFact
#PyschologicalFact
#NumberChallenge
How to put 1000000000 number like 1, 000,000,00.00?
Post your solution in the comment
How to put 1000000000 number like 1, 000,000,00.00?
Post your solution in the comment
Forwarded from Future Data Science(FDS)
5 Reasons Why Programmers Should Think like Hackers:
1. Incomparable tenacity
2. Doing instead of reading and traditional learning
3. Anticipating potential security breaches
4. Creative thinking and willingness to break out of the mold
5. Having fun!
https://thehackernews.com/2019/12/cybersecurity-for-programmers.html
1. Incomparable tenacity
2. Doing instead of reading and traditional learning
3. Anticipating potential security breaches
4. Creative thinking and willingness to break out of the mold
5. Having fun!
https://thehackernews.com/2019/12/cybersecurity-for-programmers.html
Python Tips and Trick, You Haven't Already Seen
part1 : https://martinheinz.dev/blog/4
part2 : https://dev.to/martinheinz/python-tips-and-trick-you-haven-t-already-seen-1p41
habr: https://habr.com/ru/company/ruvds/blog/485646/
part1 : https://martinheinz.dev/blog/4
part2 : https://dev.to/martinheinz/python-tips-and-trick-you-haven-t-already-seen-1p41
habr: https://habr.com/ru/company/ruvds/blog/485646/
martinheinz.dev
Python Tips and Trick, You Haven't Already Seen, Part 2.
Few weeks ago I posted an article (<a href="https://dev.to/martinheinz/python-tips-and-trick-you-haven-t-already-seen-1p41">here</a>) about some not so com...
What is the correct syntax to output the type of a variable or object in Python?
Final Results
4%
print(typeOf(x))
9%
print(typeof x)
26%
print(typeof(x))
61%
print(type(x))
✅TIP
Indentation is important for python programming you never miss it.
Indentation refers to the spaces at the beginning of a code line.
Where in other programming languages the indentation in code is for readability only, the indentation in Python is very important.
Python uses indentation to indicate a block of code.
Example:
for x in range (2, 5):
print x
N.B: Python will give you an error if you skip the indentation:
EXAMPLE:
for x in 5:
print x
Indentation is important for python programming you never miss it.
Indentation refers to the spaces at the beginning of a code line.
Where in other programming languages the indentation in code is for readability only, the indentation in Python is very important.
Python uses indentation to indicate a block of code.
Example:
for x in range (2, 5):
print x
N.B: Python will give you an error if you skip the indentation:
EXAMPLE:
for x in 5:
print x
Epython Lab via @vote
1. Complete the code to return the following output p = [‘a’, ‘b’, ‘c’, ‘c’, ‘d’, ‘d’] _?__ (p[3:5]) print (p) Output: [‘a’, ‘b’, ;c’, ‘d’]
public poll
remove – 7
👍👍👍👍👍👍👍 78%
Bina, @contramot, Jay, @sal_270, Emil, @Asgardia360, @RaviVarma_T
rm – 1
👍 11%
Pallab
del – 1
👍 11%
@asibehtenager
👥 9 people voted so far.
public poll
remove – 7
👍👍👍👍👍👍👍 78%
Bina, @contramot, Jay, @sal_270, Emil, @Asgardia360, @RaviVarma_T
rm – 1
👍 11%
Pallab
del – 1
👍 11%
@asibehtenager
👥 9 people voted so far.
✅Python | type() function
type() method returns class type of the argument(object) passed as parameter. type() function is mostly used for debugging purposes.
Two different types of arguments can be passed to type() function, single and three argument. If single argument type(obj) is passed, it returns the type of given object. If three arguments type(name, bases, dict) is passed, it returns a new type object.
Syntax : type(object)
Therefor the answer of the above question is print(type(x))
Any doubt ask
Join group discussion:
https://t.me/joinchat/H8JEqEojXCb0mUfnlAqbVA
type() method returns class type of the argument(object) passed as parameter. type() function is mostly used for debugging purposes.
Two different types of arguments can be passed to type() function, single and three argument. If single argument type(obj) is passed, it returns the type of given object. If three arguments type(name, bases, dict) is passed, it returns a new type object.
Syntax : type(object)
Therefor the answer of the above question is print(type(x))
Any doubt ask
Join group discussion:
https://t.me/joinchat/H8JEqEojXCb0mUfnlAqbVA
Epython Lab
What is the correct syntax to output the type of a variable or object in Python?
The answer is print(type(x))
Anyone wants to manage this @python4fds channel, send your name, your current job and your future plan if you are assign as an admin of the channel via @asibehtenager
👍1
#PythonQ&A #DataScience #Bioinformatics
numbers = [ 6, 0, 2, 2, 1, 4, 1, 5]
Print out the above list items in a reverse order?
Post your answer @pythonEthBot
numbers = [ 6, 0, 2, 2, 1, 4, 1, 5]
Print out the above list items in a reverse order?
Post your answer @pythonEthBot
If you are still a student apply https://summerofcode.withgoogle.com/dashboard/student/proposal-summary/
Forwarded from Nisrin
reverselist.py
123 B
Solution for the problem asked in the group...Nisrin Dhoondia