Python Forum
[Tkinter] How to Print a list = ['a','b','c'], using tkinter along with a custom font?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] How to Print a list = ['a','b','c'], using tkinter along with a custom font?
#3
Thanks Larz60+ that code was redundant. I really would like to see if tkinter or pyglet is able to print the a list for the Vglyphs so I can see the font in Voynich displayed.

import random
while True:
	e = int(input("Enter a number 1 through 12 to make a Voynich Vord: "))

	Vglyphs1 = ['y','e','9']
	Vglyphs2 = ['o','a','8','1','3']
	Vglyphs3 = ['1','8','3','4']
	Vglyphs4 = ['o','c','a','8']
	

	if e == 3 :
		t  = random.choices(Vglyphs3,weights=[6,8,2,2])
		print(*t , end="" )
		pass
		
		t = random.choices(Vglyphs4,weights=[13,10,8,8])
		print(*t   , end="" )
		pass
		
		t = random.choices(Vglyphs1,weights=[3,4,11])
		print(*t   , end="" )
		print("\n")
		continue

	if e == 2: 
		t = random.choices(Vglyphs2,weights=[13,8,8,6,2],)
		print(*t , end="" )
		pass
		
		t = random.choices(Vglyphs1,weights=[7,6,4])
		print(*t  , end="")
		print("\n")
		continue
	
Reply


Messages In This Thread
RE: How to Print a list = ['a','b','c'], using tkinter along with a custom font? - by Pleiades - Sep-15-2020, 03:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Trouble changing Font within tkinter frame title AnotherSam 1 4,123 Sep-30-2021, 05:57 PM
Last Post: menator01
  [Tkinter] Redirecting all print statements from all functions inside a class to Tkinter Anan 1 2,649 Apr-24-2021, 08:57 AM
Last Post: ndc85430
  Tkinter menu font size -method to change tonycat 2 7,835 Oct-11-2020, 02:43 AM
Last Post: tonycat
  TKINTER - Change font color for night or day Ayckinn 2 3,877 May-24-2020, 09:25 PM
Last Post: Ayckinn
  [Tkinter] Tkinter custom widget styling and creating custom theme karolp 6 4,841 May-06-2020, 06:11 PM
Last Post: karolp
  [Tkinter] Tkinter Font Color notsolowki 11 62,878 Mar-28-2018, 03:53 AM
Last Post: notsolowki
  tkinter filedialog and pickle - custom icon question. kim07133 0 2,765 Jan-08-2018, 12:10 PM
Last Post: kim07133
  [Tkinter] import numbers into a list and print (gui python) kostasalgo 5 5,430 Aug-09-2017, 08:21 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020