Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box 🎁☑️
Download Telegram
The function to display a specified message on the screen is ... ?
Anonymous Quiz
29%
run
0%
display
29%
output
43%
print
Comments in Python begin with ...?
Anonymous Quiz
0%
<!--
17%
"
83%
#
0%
*
Random password generator in python
input

import random
passlen = int(input("enter the length of password"))
s="abcdefghijklmnopqrstuvwxyz01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()?"
p = "".join(random.sample(s,passlen ))
print (p)
Python programming codes pinned «Random password generator in python input import random passlen = int(input("enter the length of password")) s="abcdefghijklmnopqrstuvwxyz01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()?" p = "".join(random.sample(s,passlen )) print (p)»
What is the maximum possible length of an identifier?
Anonymous Quiz
14%
96
43%
64
14%
79
29%
101
A user-specified value can be assigned to a variable with ______ function.
Anonymous Quiz
17%
value
83%
input
0%
user
0%
enter
User input is read as ________ ?
Anonymous Quiz
0%
floating decimal
83%
text string
0%
Integer
17%
Boolean value
Output displayed by the print function will add this invisible character at the end of the line by default ...
Anonymous Quiz
20%
\r
0%
/s
80%
/n
0%
/t
Multiple values specified in parentheses to print function will display each value separated with this by default ...
Anonymous Quiz
80%
Single Space
0%
Double Space
0%
A New Line
20%
Double Lines
Which of the following will provide an ! character as alternative separator for the print function?
Anonymous Quiz
38%
separate = !
25%
sep is !
13%
sep >> '!'
25%
sep = '!'
how many members are active this channel ? plz comment ur names
Anonymous Poll
100%
Active
0%
Not Active
Which of the following will provide a * character as alternative line ending for the print function?
Anonymous Quiz
0%
ending = '*'
33%
end as *
67%
end = '*'
0%
end to *
Excel - Formulas & Functions Beginner to Expert Course 2023

Microsoft Excel Formulas and Functions, VLookup, HLookup, XLookup, Index, Match, Dynamic Array Formulas. MS Excel 2021

https://www.udemy.com/course/excel-formulas-functions-beginner-to-expert-course
> Code:
SUBHANALLAH_021323

💌 Claim Now For Free
For which type of error does the interpreter halts and reports the error but does not execute the program?
Anonymous Quiz
33%
runtime error
67%
syntax error
0%
run time error
0%
all of these
For which type of error does the interpreter runs the program but halts at error and reports the error as an "Exception"?
Anonymous Quiz
0%
semantic error
33%
syntax error
33%
all type of errors
33%
runtime error
For which type of error does the interpreter runs the program and does not report an error?
Anonymous Quiz
33%
syntax error
0%
semantic error
67%
runtime error
0%
all type of errors